admin/server/utils/plugin/v2/plugin.go

12 lines
171 B
Go
Raw Normal View History

2025-06-19 21:53:00 +08:00
package plugin
import (
"github.com/gin-gonic/gin"
)
// Plugin 插件模式接口化v2
type Plugin interface {
// Register 注册路由
Register(group *gin.Engine)
}