From 5237d354cf30d90ba2938ea9b337b7babee44596 Mon Sep 17 00:00:00 2001 From: Michael Kochell <6913320+mickmister@users.noreply.github.com> Date: Thu, 26 Oct 2023 15:49:24 -0400 Subject: [PATCH] fix ununsed param (#189) --- server/plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/plugin.go b/server/plugin.go index a5753a6..be623f3 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(c *plugin.Context, w http.ResponseWriter, r *http.Request) { +func (p *Plugin) ServeHTTP(_ *plugin.Context, w http.ResponseWriter, _ *http.Request) { fmt.Fprint(w, "Hello, world!") }