Initial commit: breakpilot-compliance - Compliance SDK Platform
Services: Admin-Compliance, Backend-Compliance, AI-Compliance-SDK, Consent-SDK, Developer-Portal, PCA-Platform, DSMS Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
19
backend-compliance/classroom_engine/database.py
Normal file
19
backend-compliance/classroom_engine/database.py
Normal file
@@ -0,0 +1,19 @@
|
||||
"""
|
||||
Compatibility shim: re-exports from the standalone database module.
|
||||
|
||||
All compliance code that does:
|
||||
from classroom_engine.database import Base, get_db, engine, SessionLocal
|
||||
will transparently use our compliance-specific database configuration
|
||||
with search_path=compliance,core,public.
|
||||
"""
|
||||
|
||||
from database import Base, engine, SessionLocal, get_db, init_db, DATABASE_URL
|
||||
|
||||
__all__ = [
|
||||
"Base",
|
||||
"engine",
|
||||
"SessionLocal",
|
||||
"get_db",
|
||||
"init_db",
|
||||
"DATABASE_URL",
|
||||
]
|
||||
Reference in New Issue
Block a user