-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.go
More file actions
56 lines (46 loc) 路 1.08 KB
/
Copy pathmain.go
File metadata and controls
56 lines (46 loc) 路 1.08 KB
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
package main
import (
"fmt"
"log"
"os"
"os/signal"
"syscall"
c "./commands"
"github.com/bwmarrin/discordgo"
"github.com/joho/godotenv"
)
func main() {
err := godotenv.Load()
if err != nil {
log.Fatal("Error loading .env file")
}
dg, err := discordgo.New("Bot " + os.Getenv("DS_TOKEN"))
if err != nil {
fmt.Println("error creating Discord session,", err)
return
}
dg.AddHandler(c.HelpCommand)
dg.AddHandler(c.LibCommand)
dg.AddHandler(c.StatsCommand)
dg.AddHandler(c.AssetsCommand)
dg.AddHandler(c.WhiteListCommand)
dg.AddHandler(c.SearchNameCommand)
dg.AddHandler(c.SearchGitHubCommand)
dg.AddHandler(c.SearchKeyWordsCommand)
dg.AddHandler(func(dg *discordgo.Session, ready *discordgo.Ready) {
err = dg.UpdateGameStatus(0, "!cdn")
if err != nil {
log.Fatal("Status error")
}
})
err = dg.Open()
if err != nil {
fmt.Println("error opening connection,", err)
return
}
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
dg.Close()
}