5e3e47b484
Co-authored-by: Julien Salleyron <julien.salleyron@gmail.com>
27 lines
1.2 KiB
Go
27 lines
1.2 KiB
Go
package plugins
|
|
|
|
// Descriptor The static part of a plugin configuration.
|
|
type Descriptor struct {
|
|
// ModuleName (required)
|
|
ModuleName string `description:"plugin's module name." json:"moduleName,omitempty" toml:"moduleName,omitempty" yaml:"moduleName,omitempty" export:"true"`
|
|
|
|
// Version (required)
|
|
Version string `description:"plugin's version." json:"version,omitempty" toml:"version,omitempty" yaml:"version,omitempty" export:"true"`
|
|
}
|
|
|
|
// LocalDescriptor The static part of a local plugin configuration.
|
|
type LocalDescriptor struct {
|
|
// ModuleName (required)
|
|
ModuleName string `description:"plugin's module name." json:"moduleName,omitempty" toml:"moduleName,omitempty" yaml:"moduleName,omitempty" export:"true"`
|
|
}
|
|
|
|
// Manifest The plugin manifest.
|
|
type Manifest struct {
|
|
DisplayName string `yaml:"displayName"`
|
|
Type string `yaml:"type"`
|
|
Import string `yaml:"import"`
|
|
BasePkg string `yaml:"basePkg"`
|
|
Compatibility string `yaml:"compatibility"`
|
|
Summary string `yaml:"summary"`
|
|
TestData map[string]interface{} `yaml:"testData"`
|
|
}
|