12 lines
406 B
Python
12 lines
406 B
Python
from __future__ import annotations
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from app.api import auth, chat, health, user
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(health.router, tags=["health"])
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["auth"])
|
|
api_router.include_router(user.router, prefix="/user", tags=["user"])
|
|
api_router.include_router(chat.router, prefix="/chat", tags=["chat"])
|