From 7fda3765feeba3129399fe6ff3e764ef1b3ad377 Mon Sep 17 00:00:00 2001 From: Paul Jones Date: Wed, 14 Oct 2020 18:09:53 +0100 Subject: [PATCH] Correct module imports in examples (#680) --- website/content/docs/api-clients/go-sdk.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/content/docs/api-clients/go-sdk.mdx b/website/content/docs/api-clients/go-sdk.mdx index 98b8f20de2..cdf347d2da 100644 --- a/website/content/docs/api-clients/go-sdk.mdx +++ b/website/content/docs/api-clients/go-sdk.mdx @@ -38,7 +38,7 @@ method, login name, and password are pre-configured. First, we need to create a client from the Boundary API and set the address to reach Boundary: ```go -import github.com/boundary/api +import "github.com/hashicorp/boundary/api" // The default address points to the default dev mode address client, err := api.NewClient(nil) @@ -64,7 +64,7 @@ credentials := map[string]interface{}{ Now let's create an auth method client using the base client from above: ```go -import "github.com/boundary/api/authmethods" +import "github.com/hashicorp/boundary/api/authmethods" am := authmethods.NewClient(client) ``` @@ -107,8 +107,8 @@ Putting this all together: ```go import ( - github.com/boundary/api - github.com/boundary/api/authmethods + "github.com/hashicorp/boundary/api" + "github.com/hashicorp/boundary/api/authmethods" ) credentials := map[string]interface{}{