mirror of
https://github.com/zylon-ai/private-gpt.git
synced 2025-12-22 17:05:41 +01:00
9 lines
No EOL
302 B
Python
9 lines
No EOL
302 B
Python
from private_gpt.users.api.v1.routers import auth, roles, user_roles, users
|
|
from fastapi import APIRouter
|
|
|
|
api_router = APIRouter()
|
|
|
|
api_router.include_router(auth.router)
|
|
# api_router.include_router(users.router)
|
|
# api_router.include_router(roles.router)
|
|
# api_router.include_router(user_roles.router) |