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