File size: 301 Bytes
4c22249 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from fastapi import FastAPI, APIRouter
echo ##active_line3##
echo ##active_line4##
router = APIRouter()
echo ##active_line5##
echo ##active_line6##
@router.get("/ninarichi")
echo ##active_line7##
async def read_ninarichi():
echo ##active_line8##
return {"message": "Ninarichi Ring information"}
|