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/domains/experiments/ping_endpoint_v1.py
T
egutierrez 9c638fc3e5 Generacion de estructura ddd para backend
feat: Refactor API structure by consolidating endpoints and removing deprecated files
2025-06-16 22:22:41 +02:00

10 lines
152 B
Python

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