From ee7d548365febdda9e1984083dc7c3ff3456cdfc Mon Sep 17 00:00:00 2001 From: Erik Kristensen Date: Fri, 23 Feb 2024 08:13:34 -0700 Subject: [PATCH] chore: fix migrate tool default imports --- tools/migrate-resource/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/migrate-resource/main.go b/tools/migrate-resource/main.go index 2a5582df..3f0e6128 100644 --- a/tools/migrate-resource/main.go +++ b/tools/migrate-resource/main.go @@ -29,8 +29,9 @@ var funcTemplate = `func (l *{{.ResourceType}}Lister) List(_ context.Context, o var imports = `import ( "context" + "github.com/ekristen/libnuke/pkg/registry" "github.com/ekristen/libnuke/pkg/resource" -"github.com/ekristen/libnuke/pkg/registry" + "github.com/ekristen/libnuke/pkg/types" "github.com/ekristen/aws-nuke/pkg/nuke" `