Skip to content

Commit

Permalink
adicao de rota para turma. #32
Browse files Browse the repository at this point in the history
Co-Authored-by: JoaoP-Coelho <[email protected]>
  • Loading branch information
LamequeFernandes and JoaoP-Coelho committed Sep 1, 2022
1 parent 41e244d commit 60d9c3c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/api/routers/routers.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
from fastapi import APIRouter

from src.api.endpoints import professor
from src.api.endpoints import turma


api_router = APIRouter()
api_router.include_router(professor.router,
prefix='/professor',
tags=['professor'])
tags=['professor'])
api_router.include_router(turma.router,
prefix='/turma',
tags=['turma'])

0 comments on commit 60d9c3c

Please sign in to comment.