From 810dbfadeaa66db35372071c2b5b0deae22e8f6f Mon Sep 17 00:00:00 2001 From: wenxianping <931128603@qq.com> Date: Wed, 16 Jan 2019 13:48:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0server=E9=85=B1=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- run.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/run.py b/run.py index 7ea064b..4e42f22 100755 --- a/run.py +++ b/run.py @@ -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() \ No newline at end of file + # Email() + # PushbearConf() \ No newline at end of file -- GitLab