2c8344faf9
They are in different folders and all loaded in controllers/router.go. This means that you only have to create a folder with a router.go file and import this folder in main router.go to add a handler.
13 lignes
262 o
Go
13 lignes
262 o
Go
package middlewares
|
|
|
|
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)
|
|
}
|