Skip to content

Commit 8de37fd

Browse files
authored
Create routes_categorias.py
1 parent 2b56779 commit 8de37fd

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

app/api/v1/routes_categorias.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/categorias", tags=["Categorias"])
4+
5+
@router.get("/")
6+
async def list_categorias():
7+
return {"message": "Lista de categorias - implemente conforme necessário"}

0 commit comments

Comments
 (0)