diff options
author | tjpcc <tjp@ctrl-c.club> | 2023-02-15 16:44:29 -0700 |
---|---|---|
committer | tjpcc <tjp@ctrl-c.club> | 2023-02-15 16:44:29 -0700 |
commit | 46ad450327111b9d28b592658d75ef57da498298 (patch) | |
tree | 2b837bac9ae36d5a34dda06ba745850da216257d /gopher | |
parent | bc96af40db6104580c22086c8db7c8119a404257 (diff) |
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.
Diffstat (limited to 'gopher')
-rw-r--r-- | gopher/serve.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gopher/serve.go b/gopher/serve.go index 84745d7..572fa55 100644 --- a/gopher/serve.go +++ b/gopher/serve.go @@ -61,7 +61,7 @@ func (gs *gopherServer) handleConn(conn net.Conn) { _, _ = io.Copy(conn, rdr) } }() - response = gs.handler(gs.Ctx, request) + response = gs.handler.Handle(gs.Ctx, request) if response == nil { response = Error(errors.New("Resource does not exist.")).Response() } |