Lynxie/main.go
2025-03-31 11:36:18 +01:00

25 lines
496 B
Go

package main
import (
"os"
"github.com/Fluffy-Bean/lynxie/app"
"github.com/Fluffy-Bean/lynxie/commands/debug"
"github.com/Fluffy-Bean/lynxie/commands/porb"
"github.com/Fluffy-Bean/lynxie/commands/tinyfox"
"github.com/bwmarrin/discordgo"
)
func main() {
a := app.NewApp(app.Config{
Prefix: ">",
Token: os.Getenv("TOKEN"),
Intents: discordgo.IntentsGuildMessages,
})
debug.RegisterDebugCommands(a)
tinyfox.RegisterTinyfoxCommands(a)
porb.RegisterPorbCommands(a)
a.Run()
}