12345678910111213141516171819202122232425262728 |
- 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"
- }
|