This repository has been archived on 2025-11-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Fitz_Studio/backend/api/v1/endpoints/ping.py
T

10 lines
152 B
Python

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