From f1d69ea1eeb9c6b8a38c2f8b37dc79827119bdf9 Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Wed, 12 Aug 2020 21:57:44 -0400 Subject: [PATCH] Fix breakage from change to api generation --- api/authmethods/authenticate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/authmethods/authenticate.go b/api/authmethods/authenticate.go index a73e4c9877..47bce1cca3 100644 --- a/api/authmethods/authenticate.go +++ b/api/authmethods/authenticate.go @@ -10,7 +10,7 @@ import ( // TODO: This will need to be changed when we add Auth Method API to boundary. We'll also need a better // way to handle different auth method types. -func (c *authmethodsClient) Authenticate(ctx context.Context, authMethodId, name, password string, opt ...Option) (*authtokens.AuthToken, *api.Error, error) { +func (c *AuthMethodsClient) Authenticate(ctx context.Context, authMethodId, name, password string, opt ...Option) (*authtokens.AuthToken, *api.Error, error) { if c.client == nil { return nil, nil, fmt.Errorf("nil client in Authenticate request") }