forked from ISPsystem/isp-maintenance
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
|