sco/cmd/sco/main.go

16 lines
383 B
Go

// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package main
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
func main() {
mybot := bot.New(func(b *bot.Bot) {
b.botName = "LSV Serious Callers Only"
})
mybot.Main()
}