generated from Luis/nextjs-python-web-template
16 lines
373 B
Python
Executable File
16 lines
373 B
Python
Executable File
# !/usr/bin/env python3
|
|
import argparse
|
|
|
|
import clan_admin
|
|
|
|
|
|
# this will be the entrypoint under /bin/clan (see pyproject.toml config)
|
|
def clan() -> None:
|
|
parser = argparse.ArgumentParser(description="cLAN tool")
|
|
subparsers = parser.add_subparsers()
|
|
|
|
# init clan admin
|
|
parser_admin = subparsers.add_parser("admin")
|
|
clan_admin.make_parser(parser_admin)
|
|
|