增加server酱测试方法

gui_0.0.1
wenxianping 2019-01-16 13:48:27 +08:00
parent 6e78ccdb6e
commit 810dbfadea
1 changed files with 7 additions and 1 deletions

8
run.py
View File

@ -1,5 +1,6 @@
# -*- coding=utf-8 -*-
from config.emailConf import sendEmail
from config.pushbearConf import sendPushBear
from init import select_ticket_info
@ -11,6 +12,11 @@ def Email():
sendEmail(u"订票小助手测试一下")
def PushbearConf():
sendPushBear("订票小助手测试一下")
if __name__ == '__main__':
run()
# Email()
# Email()
# PushbearConf()