helpers.gno

0.10 Kb ยท 5 lines
1package mux
2
3func defaultNotFoundHandler(res *ResponseWriter, req *Request) {
4	res.Write("404")
5}