7 lines
156 B
Python
7 lines
156 B
Python
from .services.command import BaseActionCommand, Action
|
|
|
|
|
|
class Command(BaseActionCommand):
|
|
help = 'Restart services'
|
|
action = Action.restart.value
|