From 88450429d728330f5a148fc9a9842e2db93d20cf Mon Sep 17 00:00:00 2001 From: elkezza Date: Mon, 11 Nov 2024 11:52:23 +0000 Subject: [PATCH] fixing gh-action error by running ` go fmt ./...` --- cmd/iam_api_key_create.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/iam_api_key_create.go b/cmd/iam_api_key_create.go index 8165651f..81c18e30 100644 --- a/cmd/iam_api_key_create.go +++ b/cmd/iam_api_key_create.go @@ -12,9 +12,9 @@ import ( ) type iamAPIKeyShowOutput struct { - Name string `json:"name"` - Key string `json:"key"` - Secret string `json:"secret"` + Name string `json:"name"` + Key string `json:"key"` + Secret string `json:"secret"` Role v3.UUID `json:"role-id"` }