From 46ad450327111b9d28b592658d75ef57da498298 Mon Sep 17 00:00:00 2001 From: tjpcc Date: Wed, 15 Feb 2023 16:44:29 -0700 Subject: Switch Handler to an interface. HandlerFunc is much better as a function returning a Handler, rather than a newtype for the function type itself. This way there is no confusion creating a type-inferenced variable with HandlerFunc(func(... and then using a HandlerFunc where a Handler is expected. Much better to only have one public type. --- finger/serve.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'finger/serve.go') diff --git a/finger/serve.go b/finger/serve.go index 8623de5..68b0fa5 100644 --- a/finger/serve.go +++ b/finger/serve.go @@ -58,7 +58,7 @@ func (fs *fingerServer) handleConn(conn net.Conn) { _, _ = fmt.Fprint(conn, "Error handling request.\r\n") } }() - response := fs.handler(fs.Ctx, request) + response := fs.handler.Handle(fs.Ctx, request) if response == nil { response = Error("No result found.") } -- cgit v1.2.3