-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
57 lines (45 loc) · 1.15 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
package main
import (
"flag"
"fmt"
"os"
"os/signal"
"syscall"
"github.com/bwmarrin/discordgo"
"github.com/cbyst/AmongUsEvents/amongushandlers"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
)
func main() {
// Set up run time flags
botToken := flag.String("token", "", "Discord bot token.")
logDebug := flag.Bool("debug", false, "Set logging level to debug.")
flag.Parse()
// Setup debug logging
if *logDebug {
log.SetLevel(log.DebugLevel)
} else {
log.SetLevel(log.InfoLevel)
}
// Check for required token
if *botToken == "" {
flag.PrintDefaults()
os.Exit(1)
}
session, err := discordgo.New(fmt.Sprintf("Bot %s", *botToken))
if err != nil {
log.Fatal(errors.WithMessage(err, "Error starting and connecting discord bot session"))
os.Exit(1)
}
defer session.Close()
amongushandlers.AttachHandlers(session)
err = session.Open()
if err != nil {
log.Fatal(errors.WithMessage(err, "Error opening Discord session"))
os.Exit(1)
}
fmt.Println("Among Us Events 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
}