gameStatusUpdate/server/main.go

15 lines
197 B
Go
Raw Normal View History

2024-09-18 07:59:20 -07:00
package main
2024-11-05 05:17:08 -08:00
import (
"github.com/mattermost/mattermost/server/public/plugin"
)
2024-09-18 07:59:20 -07:00
2024-11-05 05:17:08 -08:00
func main() {
p := &Plugin{
stopChannel: make(chan struct{}),
}
2024-11-05 06:59:39 -08:00
// Start the plugin
2024-11-05 05:17:08 -08:00
plugin.ClientMain(p)
}