Restructure: Move 43 files into 8 domain packages (backend-lehrer)
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
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>
This commit is contained in:
@@ -1,22 +1,4 @@
|
||||
"""
|
||||
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 recording_routes import router as _routes_router
|
||||
from recording_transcription import router as _transcription_router
|
||||
from recording_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)
|
||||
# Backward-compat shim -- module moved to recording/api.py
|
||||
import importlib as _importlib
|
||||
import sys as _sys
|
||||
_sys.modules[__name__] = _importlib.import_module("recording.api")
|
||||
|
||||
Reference in New Issue
Block a user