chore: release v1.0.0 — каркас FastAPI, ingress Grafana, интеграции, документация
Made-with: Cursor
This commit is contained in:
13
onguard24/modules/statusboard.py
Normal file
13
onguard24/modules/statusboard.py
Normal file
@ -0,0 +1,13 @@
|
||||
from fastapi import APIRouter
|
||||
|
||||
router = APIRouter(tags=["module-statusboard"])
|
||||
|
||||
|
||||
@router.get("/")
|
||||
async def statusboard_root():
|
||||
return {
|
||||
"module": "statusboard",
|
||||
"status": "stub",
|
||||
"note": "светофор по сервисам — агрегация по алертам",
|
||||
"demo": [],
|
||||
}
|
||||
Reference in New Issue
Block a user