summaryrefslogtreecommitdiff
path: root/types/errors.go
blob: 11f60f90403dff089ef3353e6722bc1dac9244c7 (plain)
1
2
3
4
5
6
7
8
9
10
package types

import "github.com/gofiber/fiber/v2"

type TemplateError struct {
	Context      *fiber.Ctx
	PageTitle    string
	ErrorMessage error
	StatusCode   int
}