summaryrefslogtreecommitdiff
path: root/clusterman/__main__.py
diff options
context:
space:
mode:
authorLoic Guegan <loic.guegan@mailbox.org>2023-10-25 15:58:01 +0200
committerLoic Guegan <loic.guegan@mailbox.org>2023-10-25 15:58:01 +0200
commit1030dd08ebe9137b01754e85ad7c9ae4182f29aa (patch)
treef50ab5ebefab45654a5d46a1c9a2a517665cb9b3 /clusterman/__main__.py
parentcaa032a09de387d44e814e73d345c1955f80d8b1 (diff)
Minor changes
Diffstat (limited to 'clusterman/__main__.py')
-rw-r--r--clusterman/__main__.py3
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")