sco/cmd/sco/main.go

15 lines
338 B
Go
Raw Normal View History

2020-09-08 22:28:23 +00:00
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package main
2020-09-08 22:58:55 +00:00
import "git.eeqj.de/sneak/sco/bot"
2020-09-08 22:28:23 +00:00
// Documentation for the Go driver can be found
// at https://godoc.org/github.com/mattermost/platform/model#Client
func main() {
2020-09-08 22:58:55 +00:00
sco := bot.New(func(b *bot.Bot) {
})
sco.Main()
2020-09-08 22:28:23 +00:00
}