Changed cilent ctor to initialize string slices

This commit is contained in:
David J. Allen 2024-03-19 15:02:21 -06:00
parent fddcc8d6af
commit e67bc3e010
No known key found for this signature in database
GPG key ID: 717C593FF60A2ACC

View file

@ -30,7 +30,11 @@ type Client struct {
} }
func NewClient() *Client { func NewClient() *Client {
return &Client{} return &Client{
RedirectUris: []string{},
Scope: []string{},
Audience: []string{},
}
} }
func (client *Client) ClearCookies() { func (client *Client) ClearCookies() {