去掉无用代码

This commit is contained in:
xing 2023-02-09 00:10:19 +08:00
parent 796ae6f0fa
commit febaab279d
2 changed files with 1 additions and 16 deletions

View File

@ -1,7 +1,6 @@
## wp-go ## wp-go
a simple front of WordPress build with golang.
一个go写的WordPress的前端功能比较简单只有列表页和详情页,rss2主题只有twentyfifteen和twentyseventeen两套主题插件的话只有一个简单的列表页的摘要生成和enlighter代码高亮。本身只用于展示文章添加评论走的转发请求到php的WordPress。因为大量用了泛型功能所以要求go的版本在1.18及以上 一个go写的WordPress的前端功能比较简单只有列表页和详情页,rss2主题只有twentyfifteen和twentyseventeen两套主题插件的话只有一个简单的列表页的摘要生成和enlighter代码高亮。本身只用于展示文章添加评论走的转发请求到php的WordPress。因为大量用了泛型功能所以要求go的版本在1.19及以上越新越好。。。
#### 特色功能 #### 特色功能

View File

@ -1,9 +1,5 @@
package plugins package plugins
import (
"github.com/gin-gonic/gin"
)
const ( const (
Home = iota + 1 Home = iota + 1
Archive Archive
@ -25,13 +21,3 @@ var IndexSceneMap = map[int]struct{}{
Tag: {}, Tag: {},
Search: {}, Search: {},
} }
type Func[T any] func(*Plugin[T], *gin.Context, *T, int)
type Plugin[T any] struct {
calls []Func[T]
index int
post *T
scene int
c *gin.Context
}