Modify ordering of attributes

This commit is contained in:
Chris Roberts 2022-06-29 16:11:30 -07:00
parent a08204d4ba
commit ced8f947f8

View File

@ -47,8 +47,8 @@ type Plugin struct {
Location string // Location of the plugin (generally path to binary)
Mappers []*argmapper.Func // Plugin specific mappers
Name string // Name of the plugin
Types []component.Type // Component types supported by this plugin
Options map[component.Type]interface{} // Options for supported components
Types []component.Type // Component types supported by this plugin
cleaner cleanup.Cleanup // Cleanup tasks to perform on closing
logger hclog.Logger