gameStatusUpdate/server/main.go
2024-11-05 06:59:39 -08:00

15 lines
197 B
Go

package main
import (
"github.com/mattermost/mattermost/server/public/plugin"
)
func main() {
p := &Plugin{
stopChannel: make(chan struct{}),
}
// Start the plugin
plugin.ClientMain(p)
}