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