mazesolver/mazesolver.go

19 lines
222 B
Go
Raw Permalink Normal View History

2025-01-31 15:50:32 -07:00
package main
import (
2025-01-31 18:58:07 -07:00
"flag"
"mazesolver/internal/bot"
2025-01-31 15:50:32 -07:00
)
2025-01-31 18:58:07 -07:00
var BotToken string
func init() {
flag.StringVar(&BotToken, "bottoken", "", "discord bot token")
2025-01-31 15:50:32 -07:00
2025-01-31 18:58:07 -07:00
flag.Parse()
}
2025-01-31 15:50:32 -07:00
2025-01-31 18:58:07 -07:00
func main() {
bot.Run(BotToken)
2025-01-31 15:50:32 -07:00
}