user-engine/src/user_engine/__init__.py

14 lines
327 B
Python
Raw Normal View History

"""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__",
]
__version__ = "0.0.0"