Skip to content

Commit

Permalink
SM-1082: Use camelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
coltonhurst committed Jan 29, 2024
1 parent 80a9fcb commit c09e13f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions languages/go/bitwarden_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ func NewBitwardenClient(apiURL *string, identityURL *string) (*BitwardenClient,
}, nil
}

func (c *BitwardenClient) AccessTokenLogin(accessToken string, state_path *string) error {
req := AccessTokenLoginRequest{AccessToken: accessToken, StateFile: state_path}
func (c *BitwardenClient) AccessTokenLogin(accessToken string, statePath *string) error {
req := AccessTokenLoginRequest{AccessToken: accessToken, StateFile: statePath}
command := Command{AccessTokenLogin: &req}

responseStr, err := c.commandRunner.RunCommand(command)
Expand Down

0 comments on commit c09e13f

Please sign in to comment.