diff --git a/server/plugin.go b/server/plugin.go index be623f3c..a5753a60 100644 --- a/server/plugin.go +++ b/server/plugin.go @@ -21,7 +21,7 @@ type Plugin struct { } // ServeHTTP demonstrates a plugin that handles HTTP requests by greeting the world. -func (p *Plugin) ServeHTTP(_ *plugin.Context, w http.ResponseWriter, _ *http.Request) { +func (p *Plugin) ServeHTTP(c *plugin.Context, w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, "Hello, world!") }