Files
dragonion-server/dragonion_server/cli/common.py
2023-07-02 11:54:49 +03:00

11 lines
168 B
Python

import click
from .cmd.service.service import service_group
cli = click.CommandCollection(
name='dragonion-server',
sources=[
service_group()
]
)