package handlers import ( "net/http" ) func (h *Handlers) PageNotFound(w http.ResponseWriter, r *http.Request) { sendResponse(w, 404, "404 - Page not found / Страница не найдена") }