mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 09:13:49 +08:00
15 lines
254 B
Go
15 lines
254 B
Go
package types
|
|
|
|
// Plugin 插件元数据结构
|
|
type Plugin struct {
|
|
Name string
|
|
Description string
|
|
Slug string
|
|
Version string
|
|
Requires []string
|
|
Excludes []string
|
|
Install string
|
|
Uninstall string
|
|
Update string
|
|
}
|