diff --git a/plugin/example_hello_world_test.go b/plugin/example_hello_world_test.go index 955c6df3cf..0da171eb77 100644 --- a/plugin/example_hello_world_test.go +++ b/plugin/example_hello_world_test.go @@ -7,7 +7,9 @@ import ( "github.com/mattermost/mattermost-server/plugin" ) -type HelloWorldPlugin struct{} +type HelloWorldPlugin struct { + plugin.MattermostPlugin +} func (p *HelloWorldPlugin) ServeHTTP(c *plugin.Context, w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "Hello, world!")