f9c76d8129
* Update focalboard to be compatible with mattermost v6 * Point to the new plugin API version * Fix collectors linter issues * Move all CI jobs to 1.16
9 lines
125 B
Go
9 lines
125 B
Go
package main
|
|
|
|
import (
|
|
"github.com/mattermost/mattermost-server/v6/plugin"
|
|
)
|
|
|
|
func main() {
|
|
plugin.ClientMain(&Plugin{})
|
|
}
|