2026-05-22 20:55:27 +02:00
|
|
|
"""Headless user-domain and profile engine."""
|
|
|
|
|
|
2026-05-22 21:33:38 +02:00
|
|
|
from user_engine.projections import ClaimsEnrichmentProjectionCache
|
2026-05-22 21:28:40 +02:00
|
|
|
from user_engine.service import PLATFORM_TENANT, UserEngineService
|
2026-05-22 21:20:19 +02:00
|
|
|
|
2026-05-22 21:33:38 +02:00
|
|
|
__all__ = [
|
|
|
|
|
"ClaimsEnrichmentProjectionCache",
|
|
|
|
|
"PLATFORM_TENANT",
|
|
|
|
|
"UserEngineService",
|
|
|
|
|
"__version__",
|
|
|
|
|
]
|
2026-05-22 20:55:27 +02:00
|
|
|
|
|
|
|
|
__version__ = "0.0.0"
|