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