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.
18 lines
272 B
18 lines
272 B
package plugin
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
const (
|
|
OnlyFuncName = "Plugin"
|
|
)
|
|
|
|
// Plugin 插件模式接口化
|
|
type Plugin interface {
|
|
// Register 注册路由
|
|
Register(group *gin.RouterGroup)
|
|
|
|
// RouterPath 用户返回注册路由
|
|
RouterPath() string
|
|
}
|