-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
58 lines (51 loc) · 1.13 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
package main
import (
"fmt"
"os"
"os/signal"
"syscall"
"github.com/bwmarrin/discordgo"
"github.com/joho/godotenv"
command "vcListBot/command"
)
func main() {
err := godotenv.Load(fmt.Sprintf("./%s.env", os.Getenv("GO_ENV")))
if err != nil {
fmt.Println("error loading .env file,", err)
}
token := os.Getenv("DISCORD_BOT_TOKEN")
if token == "" {
fmt.Println("please set ENV: DISCORD_BOT_TOKEN")
return
}
discord, err := discordgo.New("Bot " + token)
if err != nil {
fmt.Println("error creating Discord session,", err)
return
}
discord.AddHandler(Apportion)
err = discord.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
discord.Close()
}
func Apportion(session *discordgo.Session, message *discordgo.MessageCreate) {
if message.Author.Bot {
return
}
if message.Content == "!help" {
command.Help(session, message)
return
}
if message.Content == "!list" {
command.List(session, message)
return
}
return
}