-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
65 lines (53 loc) · 1.4 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
package main
import (
"Dreamer/api"
"Dreamer/commands"
"Dreamer/config"
"Dreamer/handlers"
"flag"
"os"
"os/signal"
"syscall"
"github.com/Strum355/log"
"github.com/bwmarrin/discordgo"
"github.com/spf13/viper"
)
var production *bool
func main() {
// Sets Flag to Debug Mode
production = flag.Bool("p", false, "enables production with json logging")
flag.Parse()
if *production {
log.InitJSONLogger(&log.Config{Output: os.Stdout})
} else {
log.InitSimpleLogger(&log.Config{Output: os.Stdout})
}
// Sets up Configurations for Viper
config.InitConfig()
// Creates Discord Bot Session
s, err := discordgo.New("Bot " + viper.GetString("discord.token"))
if err != nil {
log.WithError(err)
return
}
// Sets up Gin Router
go api.InitAPI(s)
s.AddHandler(func(s *discordgo.Session, r *discordgo.Ready) {
log.Info("Bot has registered handlers")
})
// Configuring Intents and Adding Handlers
handlers.HandlerConfig(s)
// Register Slash and Component Commands
commands.RegisterSlashCommands(s)
// Connecting to Discord Server Gateway
s.Open()
log.Info("Bot is initialising")
// Go-routines for Image Generation and Queuing
go commands.StableDiffusionScheduler()
go commands.UpdateQueueStatus()
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM)
<-sc
log.Info("Cleanly exiting")
s.Close()
}