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