Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/controllers/not_found_handler.go
akuma06 2f7a6b8c45 Template rafactor
Now templates go files are in /templates in a templates package. Controllers only have controller files
2017-07-16 15:35:24 +02:00

13 lignes
262 o
Go

package controllers
import (
"net/http"
"github.com/NyaaPantsu/nyaa/templates"
"github.com/gin-gonic/gin"
)
// NotFoundHandler : Controller for displaying 404 error page
func NotFoundHandler(c *gin.Context) {
templates.HttpError(c, http.StatusNotFound)
}