14 lines
422 B
Python
14 lines
422 B
Python
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)
|