From ced8f947f82b414128c8e71dc787f88d0957a0f6 Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Wed, 29 Jun 2022 16:11:30 -0700 Subject: [PATCH] Modify ordering of attributes --- internal/plugin/plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/plugin/plugin.go b/internal/plugin/plugin.go index 28cb380d4..bdb8b6d28 100644 --- a/internal/plugin/plugin.go +++ b/internal/plugin/plugin.go @@ -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