mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-11 01:22:48 +00:00
21 lines
240 B
Go
21 lines
240 B
Go
package main
|
|
|
|
import (
|
|
"./bot"
|
|
"./config"
|
|
"./serverstatus"
|
|
)
|
|
|
|
// Variables used for command line parameters
|
|
var (
|
|
BotID string
|
|
)
|
|
|
|
func main() {
|
|
config.Configure()
|
|
bot.Connect(config.Config.Token)
|
|
serverstatus.Start()
|
|
bot.Start()
|
|
|
|
}
|