Files
Argenta/mock/local_test.py
T
2025-03-31 01:12:01 +03:00

18 lines
324 B
Python

from argenta.app import App
from argenta.command import Command
from argenta.router import Router
router = Router()
@router.command(Command('test'))
def test():
print(f'test command')
@router.command(Command('some'))
def test2():
print(f'some command')
app = App()
app.include_router(router)
app.start_polling()