-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
65 lines (55 loc) · 1.26 KB
/
main.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
54
55
56
57
58
59
60
61
62
63
64
65
package main
import (
"encoding/json"
"fmt"
io "io/ioutil"
"os"
"os/signal"
"syscall"
"example.com/main/command"
discord "github.com/bwmarrin/discordgo"
// "example.com/main/command/data"
)
// function that handle error
func handle(err error) {
if err != nil {
fmt.Println(err)
}
}
func main() {
file, err := io.ReadFile("settings.json")
if err != nil {
handle(err)
file, err = io.ReadFile("settings.example.json")
}
if err != nil {
fmt.Println("pls check if there is settings.example.json or settings.json in your disk")
return
}
err = json.Unmarshal(file, GetSettings())
handle(err)
bot, err := discord.New("Bot " + settings.Token)
if err != nil {
fmt.Println(err)
}
func() {
handler := NewMessageHandler(map[string]command.Command{
"help": command.AddHelp(),
"purge": command.AddPurge(),
"bulk": command.AddBulk(),
})
bot.AddHandler(func(s *discord.Session, m *discord.MessageCreate) {
handler.Handle(m)
})
}()
bot.Identify.Intents = discord.IntentsAll
SetBot(bot)
fmt.Println("Bot is running!")
err = bot.Open()
handle(err)
fmt.Println("Bot is now running. Press CTRL-C to exit.")
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM, os.Interrupt, os.Kill)
<-sc
bot.Close()
}