mattermost/plugin/example_hello_world_test.go
2018-07-25 08:01:13 -04:00

22 lines
471 B
Go

package plugin_test
import (
"fmt"
"net/http"
"github.com/mattermost/mattermost-server/plugin"
)
type HelloWorldPlugin struct {
plugin.MattermostPlugin
}
func (p *HelloWorldPlugin) ServeHTTP(c *plugin.Context, w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello, world!")
}
// This example demonstrates a plugin that handles HTTP requests which respond by greeting the
// world.
func Example_helloWorld() {
plugin.ClientMain(&HelloWorldPlugin{})
}