Skip to content

Commit

Permalink
task routes registered in main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nrjadkry committed Jul 7, 2024
1 parent 46977f4 commit 8a81a9f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/backend/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from fastapi.responses import RedirectResponse, JSONResponse
from app.users import oauth_routes
from app.users import user_routes
from app.tasks import task_routes
from loguru import logger as log
from fastapi.templating import Jinja2Templates

Expand Down Expand Up @@ -95,6 +96,7 @@ def get_application() -> FastAPI:
_app.include_router(waypoint_routes.router)
_app.include_router(user_routes.router)
_app.include_router(oauth_routes.router)
_app.include_router(task_routes.router)

return _app

Expand Down

0 comments on commit 8a81a9f

Please sign in to comment.