sco/cmd/sco/main.go

17 lines
272 B
Go
Raw Normal View History

2020-09-08 22:28:23 +00:00
package main
2020-09-09 01:14:51 +00:00
import "os"
2020-09-08 22:58:55 +00:00
import "git.eeqj.de/sneak/sco/bot"
2020-09-08 22:28:23 +00:00
2020-09-09 01:14:51 +00:00
var Version string
var Buildarch string
2020-09-08 22:28:23 +00:00
func main() {
2020-09-08 23:13:15 +00:00
mybot := bot.New(func(b *bot.Bot) {
2020-09-09 01:14:51 +00:00
b.BotName = "LSV Serious Callers Only"
b.Version = Version
b.Buildarch = Buildarch
2020-09-08 22:58:55 +00:00
})
2020-09-09 01:14:51 +00:00
os.Exit(mybot.Main())
2020-09-08 22:28:23 +00:00
}