This commit is contained in:
huangzhenpc
2025-03-27 10:20:06 +08:00
parent 6bcfedeb04
commit cc2a3a34e3
21 changed files with 1791 additions and 0 deletions

14
core/__init__.py Normal file
View File

@@ -0,0 +1,14 @@
from .config import Config
from .exceptions import (CursorRegisterException, EmailError, ProxyFetchError,
RegisterError, TokenGenerationError)
__version__ = "1.0.0"
__all__ = [
'Config',
'CursorRegisterException',
'TokenGenerationError',
'ProxyFetchError',
'RegisterError',
'EmailError'
]