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>
20 lines
486 B
Python
20 lines
486 B
Python
"""
|
|
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",
|
|
]
|