From 38f1ae7fe4ab993af0b46aa413990d7304c51c3d Mon Sep 17 00:00:00 2001 From: tombuildsstuff Date: Wed, 21 Feb 2024 17:43:04 +0100 Subject: [PATCH] nits: more imports --- tools/importer-rest-api-specs/cmd/schema.go | 2 +- tools/importer-rest-api-specs/pipeline/run_importer.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/importer-rest-api-specs/cmd/schema.go b/tools/importer-rest-api-specs/cmd/schema.go index 40cee48dd77..d25785a738b 100644 --- a/tools/importer-rest-api-specs/cmd/schema.go +++ b/tools/importer-rest-api-specs/cmd/schema.go @@ -6,12 +6,12 @@ package cmd import ( "flag" "fmt" - "github.com/hashicorp/pandora/tools/importer-rest-api-specs/components/terraform/schema" "log" "strings" "github.com/hashicorp/go-hclog" "github.com/hashicorp/pandora/tools/importer-rest-api-specs/components/terraform/resources" + "github.com/hashicorp/pandora/tools/importer-rest-api-specs/components/terraform/schema" "github.com/hashicorp/pandora/tools/importer-rest-api-specs/models" "github.com/hashicorp/pandora/tools/sdk/config/definitions" "github.com/hashicorp/pandora/tools/sdk/resourcemanager" diff --git a/tools/importer-rest-api-specs/pipeline/run_importer.go b/tools/importer-rest-api-specs/pipeline/run_importer.go index 9b4a2b8b2b0..be09de3b8c7 100644 --- a/tools/importer-rest-api-specs/pipeline/run_importer.go +++ b/tools/importer-rest-api-specs/pipeline/run_importer.go @@ -5,14 +5,14 @@ package pipeline import ( "fmt" - "github.com/hashicorp/pandora/tools/importer-rest-api-specs/components/dataapigeneratorjson" - "github.com/hashicorp/pandora/tools/importer-rest-api-specs/components/terraform" "os" "path" "sort" "github.com/hashicorp/go-hclog" + "github.com/hashicorp/pandora/tools/importer-rest-api-specs/components/dataapigeneratorjson" "github.com/hashicorp/pandora/tools/importer-rest-api-specs/components/discovery" + "github.com/hashicorp/pandora/tools/importer-rest-api-specs/components/terraform" "github.com/hashicorp/pandora/tools/importer-rest-api-specs/models" )