MihoyoBBSTools/ql_main.py

18 lines
372 B
Python
Raw Normal View History

2022-10-11 06:16:09 +00:00
"""
new Env('米游社');
"""
import notify
from loghelper import log
from error import CookieError
from main import main
if __name__ == "__main__":
try:
status_code, message = main()
except CookieError:
status_code = 1
message = "账号Cookie出错"
log.error("账号Cookie有问题")
notify.send("米游社", message)