초기 커밋
This commit is contained in:
13
app/api/v1/router.py
Normal file
13
app/api/v1/router.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from fastapi import APIRouter
|
||||
|
||||
from app.api.v1.endpoints import analytics, auth, devices, monitoring, system, users
|
||||
|
||||
v1_router = APIRouter()
|
||||
v1_router.include_router(system.router)
|
||||
v1_router.include_router(auth.router)
|
||||
v1_router.include_router(users.router)
|
||||
v1_router.include_router(devices.router)
|
||||
v1_router.include_router(monitoring.router)
|
||||
v1_router.include_router(analytics.router)
|
||||
Reference in New Issue
Block a user