aboutsummaryrefslogtreecommitdiff
path: root/tools/cru-py/cru/service/__main__.py
blob: a7add4d4bd356d3e2ccd796ecc44ed85905315b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
import argparse


arg_parser = argparse.ArgumentParser(description="Service management")
command_subparser = arg_parser.add_subparsers(dest="command")

template_parser = command_subparser.add_parser("template", help="Template management")
template_subparser = template_parser.add_subparsers(dest="template_command")

template_subparser.add_parser('list', description="List templates")
template_subparser.add_parser('generate')