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