Skip to content

Commit ee1a001

Browse files
authored
refactor: fix formatting (#167)
Without change, this causes the file to change every time build is done. ``` ⇒ make run main| ▶ Running gofmt… .../cloudstack-cloudmonkey/cmd/network.go ``` Signed-off-by: Abhishek Kumar <[email protected]>
1 parent a6552ee commit ee1a001

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/network.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ func NewAPIRequest(r *Request, api string, args []string, isAsync bool) (map[str
207207
expiresKey := "expires"
208208
params.Add("response", "json")
209209
params.Add("signatureversion", signatureversion)
210-
params.Add(expiresKey, time.Now().UTC().Add(15 * time.Minute).Format(time.RFC3339))
210+
params.Add(expiresKey, time.Now().UTC().Add(15*time.Minute).Format(time.RFC3339))
211211

212212
var encodedParams string
213213
var err error

0 commit comments

Comments
 (0)