diff options
| author | Loic Guegan <loic.guegan@mailbox.org> | 2023-10-25 17:11:07 +0200 |
|---|---|---|
| committer | Loic Guegan <loic.guegan@mailbox.org> | 2023-10-25 17:11:07 +0200 |
| commit | c035f62a4972a5255b2621d24c604d21da76d3d3 (patch) | |
| tree | 534e722de99a6b6a27dcf758738ae48f7e47f8b3 /clusterman/__main__.py | |
| parent | bdd896b87bf14d8630175247d7db8603c60609e5 (diff) | |
Minor changes
Diffstat (limited to 'clusterman/__main__.py')
| -rw-r--r-- | clusterman/__main__.py | 6 |
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") |
