10 lines
196 B
Python
10 lines
196 B
Python
|
|
# 只导入错误类
|
|
from wechat_ipad.errors import *
|
|
|
|
# 设置包名
|
|
__name__ = "wechat_api"
|
|
|
|
# 导出 WechatAPIClient 类,但避免循环导入
|
|
from wechat_ipad.client import WechatAPIClient
|