-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.go
53 lines (43 loc) · 998 Bytes
/
app.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package main
import (
"os"
"os/signal"
"bird_qq_bot/bot"
"bird_qq_bot/utils"
_ "bird_qq_bot/modules/autoCopy"
_ "bird_qq_bot/modules/kaoyanScore"
_ "bird_qq_bot/modules/logging"
_ "bird_qq_bot/modules/loveMsg"
_ "bird_qq_bot/modules/noCopy"
_ "bird_qq_bot/modules/pong"
_ "bird_qq_bot/modules/randAt"
_ "bird_qq_bot/modules/restart"
_ "bird_qq_bot/modules/takeOut"
_ "bird_qq_bot/modules/tianXing"
)
func init() {
utils.WriteLogToFS()
//config.Init()
}
func main() {
// 快速初始化
bot.Init()
// 初始化 Modules
bot.StartService()
// 使用协议
// 不同协议可能会有部分功能无法使用
// 在登陆前切换协议
bot.UseProtocol(bot.IPad)
// 登录
err := bot.Login()
if err != nil {
panic(err)
}
//bot.SaveToken() // 存储快速登录使用的 Token, 如需使用快捷登录请解除本条注释
// 刷新好友列表,群列表
bot.RefreshList()
ch := make(chan os.Signal, 1)
signal.Notify(ch, os.Interrupt)
<-ch
bot.Stop()
}