fix ununsed param (#189)

This commit is contained in:
Michael Kochell 2023-10-26 15:49:24 -04:00 committed by GitHub
parent eef27c854b
commit 5237d354cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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!")
}