1 Star 0 Fork 0

伍罡/wc_robot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 956 Bytes
一键复制 编辑 原始数据 按行查看 历史
LeantLi 提交于 2022-11-28 21:06 . 多处更新: (#6)
package main
import (
"log"
"time"
"wc_robot/common"
"wc_robot/handlers"
"wc_robot/robot"
"wc_robot/tasks"
)
// 日志设置初始化
func init() {
log.SetFlags(log.Llongfile | log.Ldate | log.Ltime)
// 部署在 linux 上可直接通过 nohup ./wc_robot > robot.log & 运行并打印日志
// 本机测试运行可取消下方注释,记录 log 便于观察
// // 打印日志到本地 wc_robot.log
// outputLogPath := "wc_robot.log"
// f, err := os.Create(outputLogPath)
// if err != nil {
// log.Println("[WARN]创建日志文件失败, 日志仅输出在控制台")
// }
// w := io.MultiWriter(os.Stdout, f)
// log.SetOutput(w)
}
func main() {
begin := time.Now()
defer func() {
log.Printf("[INFO]本次机器人运行时间为: %s", time.Since(begin).String())
}()
r := robot.NewRobot()
handlers.InitHandlers(r)
if err := r.Login(); err != nil {
log.Println(err)
}
tasks.InitTasks(common.GetConfig())
r.Block()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/etmoc/wc_robot.git
git@gitee.com:etmoc/wc_robot.git
etmoc
wc_robot
wc_robot
main

搜索帮助