Skip to content

Commit 833004a

Browse files
committed
Fix formatting of imports:
1 parent 72491e5 commit 833004a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cmd/outdated/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package main
22

3-
import "github.com/replicatedhq/outdated/cmd/outdated/cli"
4-
5-
// Required to use this tool with GCP
6-
import _ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
3+
import (
4+
"github.com/replicatedhq/outdated/cmd/outdated/cli"
5+
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp" // required for GKE
6+
)
77

88
func main() {
99
cli.InitAndExecute()

0 commit comments

Comments
 (0)