10 lines
152 B
Python
10 lines
152 B
Python
# backend/api/endpoints/ping.py
|
|
|
|
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
@router.get("/")
|
|
async def ping():
|
|
return {"message": "pong"}
|