Files
xiaoxia-saas/packages/domain/auth/session_store.py
T
Xiaoxia AI e5224d090b
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 1m6s
Deploy / Deploy Staging (push) Successful in 2m14s
Deploy / Deploy Production (push) Has been skipped
refactor(domain): move auth infrastructure to adapters
2026-06-21 00:46:56 +08:00

11 lines
368 B
Python

"""Compatibility import for Redis-backed session storage.
Infrastructure implementations live under `packages.adapters`. New code should
import `packages.adapters.redis.session_store` directly or inject a session-store
port into the use case.
"""
from packages.adapters.redis.session_store import RedisConfig, SessionStore
__all__ = ["RedisConfig", "SessionStore"]