2024-02-11 02:01:18 +08:00
|
|
|
import click
|
|
|
|
|
2024-06-03 17:58:27 +08:00
|
|
|
from mgrctl.cli.lazy_group import LazyGroup
|
|
|
|
from mgrctl.settings.general import INSTALLED_APPS
|
2024-02-11 02:01:18 +08:00
|
|
|
|
|
|
|
|
|
|
|
@click.group(
|
|
|
|
cls=LazyGroup,
|
|
|
|
lazy_subcommands=INSTALLED_APPS['dci6'],
|
|
|
|
help='dci6 command for lazy example',
|
|
|
|
)
|
|
|
|
def cli():
|
|
|
|
pass
|