mirror of
https://github.com/smallevilbeast/ntchat.git
synced 2025-05-24 07:46:07 +08:00
20 lines
417 B
Python
20 lines
417 B
Python
from .conf import VERSION
|
|
from .core.wechat import WeChat
|
|
from .wc import wcprobe
|
|
from .const.notify_type import *
|
|
from .exception import *
|
|
from . import conf
|
|
|
|
__version__ = VERSION
|
|
|
|
|
|
def set_wechat_exe_path(wechat_exe_path=None, wechat_version=None):
|
|
"""
|
|
自定义微信路径
|
|
"""
|
|
conf.DEFAULT_WECHAT_EXE_PATH = wechat_exe_path
|
|
conf.DEFAULT_WECHAT_VERSION = wechat_version
|
|
|
|
|
|
exit_ = wcprobe.exit
|