Skip to content

Commit beadae6

Browse files
committed
Lowercase the AccessToken variable name
1 parent da148d8 commit beadae6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ type Client struct {
6666
}
6767

6868
// New creates a new MessageBird client object.
69-
func New(AccessKey string) *Client {
69+
func New(accessKey string) *Client {
7070
return &Client{
71-
AccessKey: AccessKey,
71+
AccessKey: accessKey,
7272
HTTPClient: &http.Client{
7373
Timeout: httpClientTimeout,
7474
},

0 commit comments

Comments
 (0)