Generacion de estructura ddd para backend
feat: Refactor API structure by consolidating endpoints and removing deprecated files
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
# backend/api/endpoints/ping.py
|
||||
|
||||
from fastapi import APIRouter
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
@router.get("/")
|
||||
async def ping():
|
||||
return {"message": "pong"}
|
||||
Reference in New Issue
Block a user