2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-05 05:47:17 +08:00
Files
panel/app/plugins/loader/loader.go
2024-07-29 03:25:53 +08:00

18 lines
252 B
Go

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