1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-11 09:32:50 +00:00
Files
go-discord-bot/main.go
2017-01-13 23:36:01 +01:00

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()
}