9 lines
117 B
Python
9 lines
117 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/")
|
|
async def index():
|
|
return {"works": True}
|