gameStatusUpdate/server/main.go
2024-11-05 05:17:08 -08:00

15 lines
239 B
Go

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