first commit
This commit is contained in:
12
backend/app/api/__init__.py
Normal file
12
backend/app/api/__init__.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from fastapi import APIRouter
|
||||
|
||||
from app.api.routes import auth, backups, dashboard, health, logs, routers, settings
|
||||
|
||||
api_router = APIRouter()
|
||||
api_router.include_router(auth.router, prefix='/auth', tags=['auth'])
|
||||
api_router.include_router(dashboard.router, prefix='/dashboard', tags=['dashboard'])
|
||||
api_router.include_router(routers.router, prefix='/routers', tags=['routers'])
|
||||
api_router.include_router(backups.router, prefix='/backups', tags=['backups'])
|
||||
api_router.include_router(settings.router, prefix='/settings', tags=['settings'])
|
||||
api_router.include_router(logs.router, prefix='/logs', tags=['logs'])
|
||||
api_router.include_router(health.router, tags=['health'])
|
||||
Reference in New Issue
Block a user