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