Skip to content

Commit

Permalink
Addressing comments'
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotforbes committed Mar 27, 2023
1 parent a590a2c commit 5983fbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/rest/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ type Client struct {
client *http.Client
}

func New(BaseURL *url.URL, token string, httpClient *http.Client) *Client {
func New(baseURL *url.URL, token string, httpClient *http.Client) *Client {
return &Client{
BaseURL: BaseURL,
BaseURL: baseURL,
circleToken: token,
client: httpClient,
}
Expand Down

0 comments on commit 5983fbe

Please sign in to comment.