mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
9 lines
230 B
Python
9 lines
230 B
Python
from argenta import Router, Response, Command
|
|
|
|
work_router: Router = Router(title="Base points:")
|
|
|
|
|
|
@work_router.command(Command('hello', description="Hello, world!"))
|
|
def command_help(response: Response):
|
|
print('Hello, world!')
|