From fa1324fabd0f7b5257c9c7196d46cc18bc8bb8de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20Saint-F=C3=A9lix?= Date: Thu, 23 Mar 2023 15:45:30 +0100 Subject: [PATCH] Rename Request interface method from Do to Perform following #618 (#627) --- typedapi/typedclient.request.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typedapi/typedclient.request.go b/typedapi/typedclient.request.go index 9ceb357027..007396618c 100644 --- a/typedapi/typedclient.request.go +++ b/typedapi/typedclient.request.go @@ -24,5 +24,5 @@ import ( // Request defines the TypedApi requests. type Request interface { - Do(ctx context.Context) (*http.Response, error) + Perform(ctx context.Context) (*http.Response, error) }