mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-14 20:41:21 +08: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)
|
|
}
|