docxTemplater/handlers/pages.go

10 lines
203 B
Go
Raw Normal View History

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