summaryrefslogtreecommitdiff
path: root/clusterman/__main__.py
diff options
context:
space:
mode:
authorLoic Guegan <loic.guegan@mailbox.org>2023-10-25 17:11:07 +0200
committerLoic Guegan <loic.guegan@mailbox.org>2023-10-25 17:11:07 +0200
commitc035f62a4972a5255b2621d24c604d21da76d3d3 (patch)
tree534e722de99a6b6a27dcf758738ae48f7e47f8b3 /clusterman/__main__.py
parentbdd896b87bf14d8630175247d7db8603c60609e5 (diff)
Minor changes
Diffstat (limited to 'clusterman/__main__.py')
-rw-r--r--clusterman/__main__.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/clusterman/__main__.py b/clusterman/__main__.py
index 13f4cbd..56c9f60 100644
--- a/clusterman/__main__.py
+++ b/clusterman/__main__.py
@@ -1,5 +1,5 @@
import argparse,sys
-from clusterman.config import Config
+from clusterman.config import *
from clusterman.commands import node
def main():
@@ -15,12 +15,10 @@ def main():
# Parse arguments:
args = parser.parse_args()
- a=Config()
-
# Run the proper handler
if args.command == "node":
print("Do node related stuff")
-
+
if args.command == "frontend":
print("Do frontend related stuff")