Files
exproject/backend-app/api/main_router.py

7 lines
124 B
Python

from fastapi import APIRouter
router = APIRouter()
@router.get("/hello")
async def say_hello():
return {"msg":"hello"}