wp-go/internal/plugins/plugins.go

24 lines
235 B
Go
Raw Normal View History

2022-09-23 13:46:34 +00:00
package plugins
const (
Home = iota + 1
Archive
Category
2023-01-26 16:52:59 +00:00
Tag
2022-09-23 13:46:34 +00:00
Search
Detail
Ok
2023-01-17 15:18:31 +00:00
Empty404
Error
InternalErr
2022-09-23 13:46:34 +00:00
)
2023-01-17 15:18:31 +00:00
var IndexSceneMap = map[int]struct{}{
Home: {},
Archive: {},
Category: {},
2023-01-26 16:52:59 +00:00
Tag: {},
2023-01-17 15:18:31 +00:00
Search: {},
}