diff --git a/client.go b/client.go index f7c9dbd..59ab951 100644 --- a/client.go +++ b/client.go @@ -63,7 +63,7 @@ func (c *Client) SetAccessToken(token string) error { c.Token = &TokenResponse{ Token: token, } - c.tokenExpiresAt = time.Unix(0, 0) + c.tokenExpiresAt = time.Time{} return nil }