22 lines
391 B
Python
22 lines
391 B
Python
from __future__ import annotations
|
|
|
|
from govoplan_core.mail.config import (
|
|
ImapConfig,
|
|
ImapServerConfig,
|
|
SmtpConfig,
|
|
SmtpServerConfig,
|
|
StrictModel,
|
|
TransportCredentials,
|
|
TransportSecurity,
|
|
)
|
|
|
|
__all__ = [
|
|
"ImapConfig",
|
|
"ImapServerConfig",
|
|
"SmtpConfig",
|
|
"SmtpServerConfig",
|
|
"StrictModel",
|
|
"TransportCredentials",
|
|
"TransportSecurity",
|
|
]
|