mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
11 lines
342 B
Python
11 lines
342 B
Python
from argenta import Router, Command
|
|
|
|
router = Router()
|
|
@router.command(Command('some', aliases=['test', 'case']))
|
|
def handler(response): # pyright: ignore[reportUnusedFunction]
|
|
pass
|
|
@router.command(Command('ext', aliases=['more', 'foo']))
|
|
def handler2(response): # pyright: ignore[reportUnusedFunction]
|
|
pass
|
|
|
|
print(router.aliases) |