Working development server (no encryption now)
This commit is contained in:
14
dragonion_server/cli/cmd/service/service.py
Normal file
14
dragonion_server/cli/cmd/service/service.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from ...utils import ModuleGroup
|
||||
from .write import ServiceWriteCommand
|
||||
from .run import ServiceRunCommand
|
||||
from .remove import ServiceRemoveCommand
|
||||
|
||||
|
||||
service_group = ModuleGroup(
|
||||
name='service',
|
||||
commands={
|
||||
'write': ServiceWriteCommand(),
|
||||
'run': ServiceRunCommand(),
|
||||
'remove': ServiceRemoveCommand()
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user