Empfang: Backend-Router + Browser-UI

This commit is contained in:
2026-04-16 15:23:14 +02:00
parent 3bdc930d6e
commit 7ed33c3f1e
3 changed files with 350 additions and 0 deletions

View File

@@ -794,6 +794,13 @@ try:
except Exception:
pass
# Empfang (Rezeption) routes
try:
from empfang_routes import router as empfang_router
app.include_router(empfang_router, prefix="/empfang")
except Exception as _empfang_err:
print(f"[EMPFANG] empfang_routes not loaded: {_empfang_err}")
@app.on_event("startup")
def _print_routes():