mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 13:47:15 +08:00
18 lines
259 B
Go
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)
|
|
}
|