mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
23 lines
379 B
Python
23 lines
379 B
Python
from rich.console import Console
|
|
|
|
from argenta.command import Command
|
|
from argenta.router import Router
|
|
|
|
|
|
work_router: Router = Router(title='Work points:')
|
|
|
|
console = Console()
|
|
|
|
|
|
@work_router.command(Command('get', 'Get Help', aliases=['help', 'Get_help']))
|
|
def command_help():
|
|
pass
|
|
|
|
|
|
@work_router.command(Command('run', 'Run All'))
|
|
def command_start_solving():
|
|
pass
|
|
|
|
|
|
|