From eec94ec708fd1304f02ac43736e49b84a799a8cb Mon Sep 17 00:00:00 2001 From: Steve Dudenhoeffer Date: Thu, 16 Jan 2025 20:45:23 -0500 Subject: [PATCH] Reorder imports in main.go for better organization. Moved the local package import to align with standard Go import grouping conventions. This improves code readability and maintains a consistent structure. --- sites/google/cmd/google/main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sites/google/cmd/google/main.go b/sites/google/cmd/google/main.go index 11ff196..2575815 100644 --- a/sites/google/cmd/google/main.go +++ b/sites/google/cmd/google/main.go @@ -7,10 +7,9 @@ import ( "os" "strings" - "gitea.stevedudenhoeffer.com/steve/go-extractor/cmd/browser/pkg/browser" - "github.com/urfave/cli/v3" + "gitea.stevedudenhoeffer.com/steve/go-extractor/cmd/browser/pkg/browser" "gitea.stevedudenhoeffer.com/steve/go-extractor/sites/google" )