1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-11 01:22:48 +00:00
This commit is contained in:
2017-01-13 23:32:18 +01:00
commit 449396b94c
6 changed files with 152 additions and 0 deletions

20
main.go Normal file
View File

@@ -0,0 +1,20 @@
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()
}