Some checks failed
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-school (push) Successful in 27s
CI / test-go-edu-search (push) Successful in 40s
CI / test-python-klausur (push) Failing after 2m30s
CI / test-python-agent-core (push) Successful in 28s
CI / test-nodejs-website (push) Successful in 20s
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
23 lines
760 B
Python
23 lines
760 B
Python
"""
|
|
BreakPilot Recording API — Barrel Re-export.
|
|
|
|
Verwaltet Jibri Meeting-Aufzeichnungen und deren Metadaten.
|
|
Split into:
|
|
- recording_models.py: Pydantic models & config
|
|
- recording_helpers.py: In-memory storage & utilities
|
|
- recording_routes.py: Core recording CRUD routes
|
|
- recording_transcription.py: Transcription routes
|
|
- recording_minutes.py: Meeting minutes routes
|
|
"""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from .routes import router as _routes_router
|
|
from .transcription import router as _transcription_router
|
|
from .minutes import router as _minutes_router
|
|
|
|
router = APIRouter(prefix="/api/recordings", tags=["Recordings"])
|
|
router.include_router(_routes_router)
|
|
router.include_router(_transcription_router)
|
|
router.include_router(_minutes_router)
|