1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-11 01:22:48 +00:00

working on audio clip sound bot

This commit is contained in:
2017-01-17 07:17:44 +01:00
parent 9a720a6261
commit 0673524c31
13 changed files with 205 additions and 62 deletions

20
main.go
View File

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