mirror of
https://github.com/cnlimiter/codex-register.git
synced 2026-06-27 02:01:38 +08:00
25 lines
562 B
Python
25 lines
562 B
Python
"""
|
|
OpenAI/Codex CLI 自动注册系统
|
|
"""
|
|
|
|
from .config import get_settings, EmailServiceType
|
|
from .database import get_db, Account, EmailService, RegistrationTask
|
|
from .core import RegistrationEngine, RegistrationResult
|
|
from .services import EmailServiceFactory, BaseEmailService
|
|
|
|
__version__ = "2.0.0"
|
|
__author__ = "Yasal"
|
|
|
|
__all__ = [
|
|
'get_settings',
|
|
'EmailServiceType',
|
|
'get_db',
|
|
'Account',
|
|
'EmailService',
|
|
'RegistrationTask',
|
|
'RegistrationEngine',
|
|
'RegistrationResult',
|
|
'EmailServiceFactory',
|
|
'BaseEmailService',
|
|
]
|