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:
23
backend-lehrer/classroom/services/__init__.py
Normal file
23
backend-lehrer/classroom/services/__init__.py
Normal file
@@ -0,0 +1,23 @@
|
||||
"""
|
||||
Classroom Services Package
|
||||
"""
|
||||
|
||||
from .persistence import (
|
||||
init_db_if_needed,
|
||||
load_active_sessions_from_db,
|
||||
persist_session,
|
||||
get_session_or_404,
|
||||
DB_ENABLED,
|
||||
sessions,
|
||||
SessionLocal,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"init_db_if_needed",
|
||||
"load_active_sessions_from_db",
|
||||
"persist_session",
|
||||
"get_session_or_404",
|
||||
"DB_ENABLED",
|
||||
"sessions",
|
||||
"SessionLocal",
|
||||
]
|
||||
Reference in New Issue
Block a user