Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyb3r-Jak3 committed Apr 26, 2023
1 parent f1ad0a9 commit c1db717
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions r2_bucket.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ func (api *API) CreateR2Bucket(ctx context.Context, rc *ResourceContainer, param

uri := fmt.Sprintf("/accounts/%s/r2/buckets", rc.Identifier)
res, err := api.makeRequestContext(ctx, http.MethodPost, uri, params)
if err != nil {
return R2Bucket{}, err
}

var r2BucketResponse R2BucketResponse
err = json.Unmarshal(res, &r2BucketResponse)
Expand Down

0 comments on commit c1db717

Please sign in to comment.