Files
rbxlogger/api/app/main.py
2026-04-27 16:33:52 +02:00

7 lines
146 B
Python

from fastapi import FastAPI
app = FastAPI(title="Signal - Roblox Telemetry")
@app.get("/health")
async def health():
return {"status": "ok"}