gameStatusUpdate/server/main.go

10 lines
129 B
Go
Raw Normal View History

2024-09-18 07:59:20 -07:00
package main
2024-11-04 11:06:36 -08:00
import (
"github.com/mattermost/mattermost/server/public/plugin"
)
2024-09-18 07:59:20 -07:00
2024-11-04 11:06:36 -08:00
func main() {
plugin.ClientMain(&Plugin{})
}