You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
721 B

package example_plugin
import (
"github.com/gin-gonic/gin"
)
var ExamplePlugin = new(pluginExample)
type pluginExample struct{}
func (*pluginExample) Register(group *gin.RouterGroup) {
//如需细分权限 可以在此处use中间件 gva项目包名已改为github模式
//所以整个plugin可以直接独立到外层开启为新的项目 然后用包的形式导入也是可以完整运行的
// 例:
/*
group.Use(middleware.JWTAuth()).Use(middleware.CasbinHandler()).GET("hello", func(context *gin.Context) {
context.JSON(200, "hello world")
})
*/
group.GET("hello", func(context *gin.Context) {
context.JSON(200, "hello world")
})
}
func (*pluginExample) RouterPath() string {
return "group"
}