mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
9 lines
159 B
Python
9 lines
159 B
Python
# routers.py
|
|
from argenta import Router, Response
|
|
|
|
router = Router()
|
|
|
|
@router.command("hello")
|
|
def handler(response: Response):
|
|
print("Hello, world!")
|
|
|