mirror of
https://gitlab.com/manzerbredes/clusterman.git
synced 2025-04-06 03:56:27 +02:00
Minor changes
This commit is contained in:
parent
fc6bcbd095
commit
caa032a09d
3 changed files with 16 additions and 1 deletions
|
@ -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")
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
0
clusterman/commands/__init__.py
Normal file
0
clusterman/commands/__init__.py
Normal file
6
clusterman/commands/node.py
Normal file
6
clusterman/commands/node.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
|
||||
|
||||
|
||||
def ls():
|
||||
print("List nodes..")
|
Loading…
Add table
Reference in a new issue