mirror of
https://github.com/mattermost/focalboard.git
synced 2024-12-21 13:38:56 +02:00
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
10 lines
125 B
Go
10 lines
125 B
Go
package main
|
|
|
|
import (
|
|
"github.com/mattermost/mattermost-server/v6/plugin"
|
|
)
|
|
|
|
func main() {
|
|
plugin.ClientMain(&Plugin{})
|
|
}
|