11 lines
357 B
Python
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"]
|