Initial commit: breakpilot-lehrer - Lehrer KI Platform
Services: Admin-Lehrer, Backend-Lehrer, Studio v2, Website, Klausur-Service, School-Service, Voice-Service, Geo-Service, BreakPilot Drive, Agent-Core Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
17
backend-lehrer/alerts_agent/api/__init__.py
Normal file
17
backend-lehrer/alerts_agent/api/__init__.py
Normal file
@@ -0,0 +1,17 @@
|
||||
"""Alert Agent API."""
|
||||
|
||||
from fastapi import APIRouter
|
||||
|
||||
from .routes import router as main_router
|
||||
from .topics import router as topics_router
|
||||
from .rules import router as rules_router
|
||||
|
||||
# Erstelle einen kombinierten Router
|
||||
router = APIRouter(prefix="/alerts", tags=["Alerts Agent"])
|
||||
|
||||
# Include alle Sub-Router
|
||||
router.include_router(main_router)
|
||||
router.include_router(topics_router)
|
||||
router.include_router(rules_router)
|
||||
|
||||
__all__ = ["router"]
|
||||
Reference in New Issue
Block a user