-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
70 lines (52 loc) · 1.19 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
66
67
68
69
70
package main
import (
"flag"
"fmt"
"os"
"os/signal"
"syscall"
"nyx/commands"
"nyx/config"
"nyx/database"
"nyx/events"
"nyx/logger"
"github.com/bwmarrin/discordgo"
)
var (
session *discordgo.Session
)
func main() {
var flagMigrateCommands bool
flag.BoolVar(&flagMigrateCommands, "commands", true, "Update commands.")
flag.Parse()
database.Connect()
config.ReadEnv()
config.ReadConfig()
s, err := discordgo.New(fmt.Sprintf("Bot %v", config.Token))
if err != nil {
logger.Logger.FatalF("[ERROR]: %v", err.Error())
return
}
defer s.Close()
session = s
s.Identify.Intents = discordgo.IntentsAllWithoutPrivileged | discordgo.IntentsGuildPresences | discordgo.IntentsGuildMembers
s.AddHandler(events.Ready)
s.AddHandler(events.InteractionCreate)
err = s.Open()
if err != nil {
logger.Logger.FatalF("[ERROR]: %v", err.Error())
return
}
if flagMigrateCommands {
commands.Create(s)
}
shutdown()
}
func shutdown() {
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM, os.Interrupt)
<-sc
logger.Logger.InfoF(session.State.User.Username + " is shutting down.")
commands.Remove(session)
session.Close()
}