2018-06-30 00:57:05 +00:00
|
|
|
package handlers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
2018-07-01 03:54:28 +00:00
|
|
|
func Error404Handler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.WriteHeader(http.StatusNotFound)
|
|
|
|
ExecuteResponse(w, r, "error_404.html", nil)
|
2018-07-03 03:39:26 +00:00
|
|
|
}
|