wp-go/app/pkg/constraints/const.go

31 lines
577 B
Go
Raw Normal View History

2023-02-10 13:23:30 +00:00
package constraints
const (
2023-04-24 13:51:43 +00:00
Home = "Home"
Archive = "Archive"
Category = "Category"
Tag = "Tag"
Search = "Search"
Author = "Author"
Detail = "Detail"
2023-02-10 13:23:30 +00:00
2023-05-04 13:06:27 +00:00
NoRoute = "NoRoute"
2023-04-24 13:51:43 +00:00
Ok = "Ok"
Error404 = "Error404"
ParamError = "ParamError"
InternalErr = "InternalErr"
AllStats = "AllStats"
AllScene = "AllScene"
2023-05-03 15:57:49 +00:00
PipeData = "PipeData"
PipeMiddleware = "PipeMiddleware"
PipeRender = "PipeRender"
2023-04-21 17:12:39 +00:00
Defaults = "default"
2023-02-24 16:56:52 +00:00
HeadScript = "headScript"
FooterScript = "footerScript"
SidebarsWidgets = "sidebarsWidgets"
2023-02-10 13:23:30 +00:00
)