router.py 152 B

1234567
  1. from fastapi import APIRouter
  2. router = APIRouter()
  3. @router.get("/")
  4. async def index():
  5. return {"module": "alien_lawyer", "status": "initialized"}