mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
39 lines
1.0 KiB
Python
39 lines
1.0 KiB
Python
from rich.console import Console
|
|
|
|
from argenta.command import Command
|
|
from argenta.command.flag import Flags, InputFlags, Flag
|
|
from argenta.command.flag.defaults import PredeterminedFlags
|
|
from argenta.router import Router
|
|
from .handlers_implementation.help_command import help_command
|
|
|
|
|
|
work_router: Router = Router(title='Work points:')
|
|
work_router.set_invalid_input_flag_handler(lambda flag: print(f'Invalid input flag: {flag.get_string_entity()} {flag.get_value() if flag.get_value() else ''}'))
|
|
|
|
settings_router: Router = Router(title='Settings points:')
|
|
|
|
|
|
console = Console()
|
|
|
|
flag = Flag('test')
|
|
|
|
|
|
@work_router.command(Command(trigger='0',
|
|
description='Get Help'))
|
|
def command_help():
|
|
help_command()
|
|
|
|
|
|
@work_router.command(Command(trigger='S', description='Start Solving', flags=Flags(PredeterminedFlags.HOST, PredeterminedFlags.PORT, flag)))
|
|
def command_start_solving(args: InputFlags):
|
|
print(args.get_flag('test'))
|
|
|
|
|
|
@settings_router.command(Command(trigger='U', description='Update WordMath'))
|
|
def command_update():
|
|
pass
|
|
|
|
|
|
|
|
|