Files
xiaoxia-saas/packages/domain/auth/email_service.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
357 B
Python

"""Compatibility import for SMTP email delivery.
Infrastructure implementations live under `packages.adapters`. New code should
import `packages.adapters.smtp.email_service` directly or inject an email-sender
port into the use case.
"""
from packages.adapters.smtp.email_service import EmailConfig, EmailService
__all__ = ["EmailConfig", "EmailService"]