Skip to content

Commit 697c0f8

Browse files
authored
Create routes_centros.py
1 parent 8de37fd commit 697c0f8

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

app/api/v1/routes_centros.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from fastapi import APIRouter
2+
3+
router = APIRouter(prefix="/v1/centros", tags=["Centros"])
4+
5+
@router.get("/")
6+
async def list_centros():
7+
return {"message": "Lista de centros - implemente conforme necessário"}

0 commit comments

Comments
 (0)