feat: add mqtt raw data management with UTC+8 range UI
All checks were successful
Deploy to Production / deploy (push) Successful in 1m19s
All checks were successful
Deploy to Production / deploy (push) Successful in 1m19s
This commit is contained in:
@@ -1,6 +1,14 @@
|
||||
from fastapi import APIRouter
|
||||
|
||||
from app.api.routes import locations, login, private, telemetry, users, utils
|
||||
from app.api.routes import (
|
||||
locations,
|
||||
login,
|
||||
mqtt_raw,
|
||||
private,
|
||||
telemetry,
|
||||
users,
|
||||
utils,
|
||||
)
|
||||
from app.core.config import settings
|
||||
|
||||
api_router = APIRouter()
|
||||
@@ -9,6 +17,7 @@ api_router.include_router(users.router)
|
||||
api_router.include_router(utils.router)
|
||||
api_router.include_router(locations.router)
|
||||
api_router.include_router(telemetry.router)
|
||||
api_router.include_router(mqtt_raw.router)
|
||||
|
||||
|
||||
if settings.ENVIRONMENT == "local":
|
||||
|
||||
Reference in New Issue
Block a user