From 3242c2375f8f35610413390ea392f6fdaf0c0429 Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Tue, 14 Oct 2025 08:45:11 -0400 Subject: [PATCH] chore: sort imports Sorted imports for improved readability and to follow Go import grouping conventions. Signed-off-by: Ryan Johnson --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 0d917af3..19eb19ec 100644 --- a/main.go +++ b/main.go @@ -4,9 +4,9 @@ package main import ( - "github.com/hashicorp/packer-plugin-sdk/plugin" "log" + "github.com/hashicorp/packer-plugin-sdk/plugin" "github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/clone" "github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/iso" "github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/supervisor"