mirror of
https://github.com/mattermost/focalboard.git
synced 2025-01-11 18:13:52 +02:00
10 lines
125 B
Go
10 lines
125 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/mattermost/mattermost-server/v5/plugin"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
plugin.ClientMain(&Plugin{})
|
||
|
}
|