diff options
Diffstat (limited to 'clusterman/__main__.py')
| -rw-r--r-- | clusterman/__main__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clusterman/__main__.py b/clusterman/__main__.py index ee05623..13f4cbd 100644 --- a/clusterman/__main__.py +++ b/clusterman/__main__.py @@ -1,4 +1,5 @@ import argparse,sys +from clusterman.config import Config from clusterman.commands import node def main(): @@ -14,6 +15,8 @@ def main(): # Parse arguments: args = parser.parse_args() + a=Config() + # Run the proper handler if args.command == "node": print("Do node related stuff") |
