summaryrefslogtreecommitdiff
path: root/clusterman/__main__.py
diff options
context:
space:
mode:
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")