sco/cmd/sco/main.go

15 lines
338 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() {
sco := bot.New(func(b *bot.Bot) {
})
sco.Main()
}