mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-02 09:20:22 +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"]
|