more plugin doc updates (#7767)
Этот коммит содержится в:
коммит произвёл
Christopher Speller
родитель
71dd21ef3d
Коммит
d2cff9b77c
20
plugin/example_hello_world_test.go
Обычный файл
20
plugin/example_hello_world_test.go
Обычный файл
@@ -0,0 +1,20 @@
|
||||
package plugin_test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/http"
|
||||
|
||||
"github.com/mattermost/mattermost-server/plugin/rpcplugin"
|
||||
)
|
||||
|
||||
type HelloWorldPlugin struct{}
|
||||
|
||||
func (p *HelloWorldPlugin) ServeHTTP(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() {
|
||||
rpcplugin.Main(&HelloWorldPlugin{})
|
||||
}
|
||||
Ссылка в новой задаче
Block a user