13 lines
399 B
Python
13 lines
399 B
Python
"""
|
|
API v1 router
|
|
"""
|
|
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import auth, tasks, users
|
|
|
|
api_router = APIRouter()
|
|
|
|
# Include routers for different endpoints
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])
|
|
api_router.include_router(tasks.router, prefix="/tasks", tags=["Tasks"])
|
|
api_router.include_router(users.router, prefix="/users", tags=["Users"]) |