9 lines
325 B
Python
9 lines
325 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import tasks, users, auth
|
|
|
|
api_router = APIRouter()
|
|
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["auth"])
|
|
api_router.include_router(users.router, prefix="/users", tags=["users"])
|
|
api_router.include_router(tasks.router, prefix="/tasks", tags=["tasks"]) |