Minor changes

This commit is contained in:
Loïc Guégan 2023-10-25 15:46:27 +02:00
parent fc6bcbd095
commit caa032a09d
3 changed files with 16 additions and 1 deletions

View file

@ -1,8 +1,9 @@
import argparse,sys
from clusterman.commands import node
def main():
parser = argparse.ArgumentParser()
subparsers = parser.add_subparsers(help='Target')
subparsers = parser.add_subparsers(dest="command", help='Target')
cmd_node = subparsers.add_parser("node")
cmd_frontend = subparsers.add_parser("frontend")
@ -12,6 +13,14 @@ def main():
sys.exit(1)
# Parse arguments:
args = parser.parse_args()
# Run the proper handler
if args.command == "node":
print("Do node related stuff")
if args.command == "frontend":
print("Do frontend related stuff")

View file

View file

@ -0,0 +1,6 @@
def ls():
print("List nodes..")