Signed-off-by: dongl <2725096176@qq.com>
This commit is contained in:
2022-07-19 09:38:09 +08:00
parent 6a6842be4e
commit 44fc4a7395
3 changed files with 5 additions and 14 deletions

18
controller/signIn.go Normal file
View File

@@ -0,0 +1,18 @@
package module
import (
"github.com/eatmoreapple/openwechat"
"fmt"
"github.com/robfig/cron"
"time"
)
func SignInBegin(msg *openwechat.Message) {
// 发送到微信
self.SendTextToGroup("叫啥好呢", "打卡程序启动成功!")
}
func SignInEnd(msg *openwechat.Message){
// 发送到微信
self.SendTextToGroup("叫啥好呢", "打卡程序结束运行成功!")
}