mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-12 12:38:31 +08:00
10 lines
257 B
Python
10 lines
257 B
Python
|
|
"""
|
||
|
|
邮箱验证服务模块
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .email_sender import EmailSenderService
|
||
|
|
from .email_template import EmailTemplate
|
||
|
|
from .email_verification import EmailVerificationService
|
||
|
|
|
||
|
|
__all__ = ["EmailVerificationService", "EmailSenderService", "EmailTemplate"]
|