34 lines
665 B
Python
34 lines
665 B
Python
"""
|
|
CookieCloud客户端模块
|
|
一个独立的、可复用的CookieCloud服务器客户端
|
|
|
|
作者: CookieManager Team
|
|
版本: 1.0.0
|
|
许可证: MIT
|
|
"""
|
|
|
|
from .client import CookieCloudClient
|
|
from .exceptions import (
|
|
CookieCloudError,
|
|
ConnectionError,
|
|
AuthenticationError,
|
|
DataParseError,
|
|
ConfigurationError,
|
|
NetworkError
|
|
)
|
|
from .models import CookieData, CookieConfig
|
|
from .version import __version__
|
|
|
|
__all__ = [
|
|
'CookieCloudClient',
|
|
'CookieCloudError',
|
|
'ConnectionError',
|
|
'AuthenticationError',
|
|
'DataParseError',
|
|
'ConfigurationError',
|
|
'NetworkError',
|
|
'CookieData',
|
|
'CookieConfig',
|
|
'__version__'
|
|
]
|