mirror of
https://git.isptech.ru/ISPsystem/isp-maintenance.git
synced 2025-02-01 19:00:52 +01:00
14 lines
244 B
Python
14 lines
244 B
Python
|
import click
|
||
|
|
||
|
from core.cli.lazy_group import LazyGroup
|
||
|
from settings.general import INSTALLED_APPS
|
||
|
|
||
|
|
||
|
@click.group(
|
||
|
cls=LazyGroup,
|
||
|
lazy_subcommands=INSTALLED_APPS['dci6'],
|
||
|
help='dci6 command for lazy example',
|
||
|
)
|
||
|
def cli():
|
||
|
pass
|