mirror of
https://github.com/spurtcms/spurtcms.git
synced 2026-09-21 10:32:06 +00:00
11 lines
328 B
Go
11 lines
328 B
Go
package controllers
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrInternalServerError = "internalserverr"
|
|
ErrLoadLocation = errors.New("timeZone not found")
|
|
ErrGettingTemplateList = errors.New("unable to fetch the template list")
|
|
ErrGettingTemplateModuleList = errors.New("unable to fetch the template module list")
|
|
)
|