13 lignes
212 o
Go
13 lignes
212 o
Go
|
package controllers
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
// NotFoundHandler : Controller for displaying 404 error page
|
||
|
func NotFoundHandler(c *gin.Context) {
|
||
|
httpError(c, http.StatusNotFound)
|
||
|
}
|