builds now
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2020-09-08 18:14:51 -07:00
parent 08bb2191c9
commit 209391c963
2 changed files with 39 additions and 35 deletions

View File

@@ -1,15 +1,16 @@
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package main
import "os"
import "git.eeqj.de/sneak/sco/bot"
// Documentation for the Go driver can be found
// at https://godoc.org/github.com/mattermost/platform/model#Client
var Version string
var Buildarch string
func main() {
mybot := bot.New(func(b *bot.Bot) {
b.botName = "LSV Serious Callers Only"
b.BotName = "LSV Serious Callers Only"
b.Version = Version
b.Buildarch = Buildarch
})
mybot.Main()
os.Exit(mybot.Main())
}