Hi All, I came across this issue on GitHub relating to 404 handling in which Brad F. said net/http will not implement templating.
https://github.com/golang/go/issues/10707 Perhaps a silly question but why not change http.NotFound into a function pointer like this: ``` var NotFound = func(w ResponseWriter, r *Request) { Error(w, "404 page not found", StatusNotFound) } ``` This would allow it to be replaced on app start-up via init(), main(), etc. It seems a quicker and cleaner solution to the boiler plate required for a custom response writer and would maintain backwards compatibility. The main drawback I see to it would be a nil pointer check (in which case it could default to old behaviour). Thoughts? Kind regards, Nathan -- - sent from my mobile -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.