2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-05 02:04:27 +08:00
Files
panel/app/plugins/loader/loader.go
2024-08-25 02:12:25 +08:00

18 lines
259 B
Go

package loader
import (
"github.com/TheTNB/panel/v2/pkg/types"
)
var data []*types.Plugin
// All 获取所有插件
func All() []*types.Plugin {
return data
}
// Register 注册插件
func Register(plugin *types.Plugin) {
data = append(data, plugin)
}