isp-maintenance/mgrctl/apps/dci6/commands.py

14 lines
263 B
Python
Raw Permalink Normal View History

import click
from mgrctl.cli.lazy_group import LazyGroup
from mgrctl.settings.general import INSTALLED_APPS
@click.group(
cls=LazyGroup,
lazy_subcommands=INSTALLED_APPS['dci6'],
2024-06-06 23:04:35 +08:00
help='dci6 command for DCI6manager management',
)
def cli():
pass