18 lines
355 B
Go
18 lines
355 B
Go
|
package handlers
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"git.klink.asia/paul/certman/views"
|
||
|
)
|
||
|
|
||
|
func NotFoundHandler(w http.ResponseWriter, req *http.Request) {
|
||
|
view := views.New(req)
|
||
|
view.RenderError(w, http.StatusNotFound)
|
||
|
}
|
||
|
|
||
|
func ErrorHandler(w http.ResponseWriter, req *http.Request) {
|
||
|
view := views.New(req)
|
||
|
view.RenderError(w, http.StatusInternalServerError)
|
||
|
}
|