mirror of
https://gitcode.com/flipped-aurora/gin-vue-admin.git
synced 2026-05-14 11:17:55 +00:00
12 lines
171 B
Go
12 lines
171 B
Go
|
|
package plugin
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/gin-gonic/gin"
|
||
|
|
)
|
||
|
|
|
||
|
|
// Plugin 插件模式接口化v2
|
||
|
|
type Plugin interface {
|
||
|
|
// Register 注册路由
|
||
|
|
Register(group *gin.Engine)
|
||
|
|
}
|