From 899b1173dd4eae143d6ee3218fe34a92aa9840bf Mon Sep 17 00:00:00 2001 From: Ye Chen Date: Thu, 21 Nov 2024 16:12:40 -0500 Subject: [PATCH 1/2] remove la --- images.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/images.go b/images.go index 9bbb20757..b7651b8cf 100644 --- a/images.go +++ b/images.go @@ -6,7 +6,6 @@ import ( "io" "time" - "github.com/go-resty/resty/v2" "github.com/linode/linodego/internal/parseabletime" ) @@ -183,7 +182,6 @@ func (c *Client) UpdateImage(ctx context.Context, imageID string, opts ImageUpda } // ReplicateImage replicates an image to a given set of regions. -// NOTE: Image replication may not currently be available to all users. func (c *Client) ReplicateImage(ctx context.Context, imageID string, opts ImageReplicateOptions) (*Image, error) { return doPOSTRequest[Image]( ctx, From 64ad1fc90c132ba7d8c41b561097748e988279bb Mon Sep 17 00:00:00 2001 From: Ye Chen Date: Thu, 21 Nov 2024 16:21:56 -0500 Subject: [PATCH 2/2] oops --- images.go | 1 + 1 file changed, 1 insertion(+) diff --git a/images.go b/images.go index b7651b8cf..dd1d5f3fa 100644 --- a/images.go +++ b/images.go @@ -6,6 +6,7 @@ import ( "io" "time" + "github.com/go-resty/resty/v2" "github.com/linode/linodego/internal/parseabletime" )