mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-04 10:13:53 +08:00
12 lines
224 B
Go
12 lines
224 B
Go
package plugin_model
|
|
|
|
type PluginConfig struct {
|
|
Name string `json:"name"`
|
|
Status Status `json:"status"`
|
|
Config ConfigType `json:"config,omitempty"`
|
|
}
|
|
|
|
type ConfigType map[string]any
|
|
|
|
type Render map[string]any
|