-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.go
49 lines (40 loc) · 991 Bytes
/
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
package main
import (
"fmt"
"log"
"os"
"os/signal"
"syscall"
"github.com/bwmarrin/discordgo"
"github.com/joho/godotenv"
"github.com/someshkar/domainbot/handlers"
)
func main() {
// Load env variables from .env
err := godotenv.Load()
if err != nil {
log.Fatal(err)
}
discordToken := os.Getenv("DISCORD_TOKEN")
// Create a new Discord session using the provided bot token
dg, err := discordgo.New("Bot " + discordToken)
if err != nil {
log.Fatalln(err)
return
}
// Add handlers
dg.AddHandler(handlers.MainHandler)
// Open a websocket connection to Discord and start listening
err = dg.Open()
if err != nil {
log.Fatalln("Error opening connection", err)
return
}
// Wait here until Ctrl-C or some other term signal is received
fmt.Println("Domainbot is running. Press CTRL-C to exit.")
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM, os.Interrupt, os.Kill)
<-sc
// Cleanly close the Discord session
dg.Close()
}