1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-07-15 14:45:48 +00:00
arikawa/_example/advanced_bot/main.go

50 lines
1.1 KiB
Go

// Package main demonstrates an advanced bot that uses the bot router library to
// make commands.
package main
import (
"log"
"os"
"github.com/diamondburned/arikawa/v2/bot"
)
// To run, do `BOT_TOKEN="TOKEN HERE" go run .`
func main() {
var token = os.Getenv("BOT_TOKEN")
if token == "" {
log.Fatalln("No $BOT_TOKEN given.")
}
commands := &Bot{}
wait, err := bot.Start(token, commands, func(ctx *bot.Context) error {
ctx.HasPrefix = bot.NewPrefix("!", "~")
ctx.EditableCommands = true
// Subcommand demo, but this can be in another package.
ctx.MustRegisterSubcommand(&Debug{})
// The bot package will automatically derive out Gateway intents. It
// might not catch everything though, so a ctx.Gateway.AddIntents is
// always available.
return nil
})
if err != nil {
log.Fatalln(err)
}
log.Println("Bot started")
// As of this commit, wait() will block until SIGINT or fatal. The past
// versions close on call, but this one will block.
// If for some reason you want the Cancel() function, manually make a new
// context.
if err := wait(); err != nil {
log.Fatalln("Gateway fatal error:", err)
}
}