mirror of
https://github.com/Fluffy-Bean/Lynxie.git
synced 2025-05-14 08:02:17 +00:00
25 lines
496 B
Go
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()
|
|
}
|