mirror of
https://github.com/davidallendj/opaal.git
synced 2025-12-20 03:27:02 -07:00
Changed cilent ctor to initialize string slices
This commit is contained in:
parent
fddcc8d6af
commit
e67bc3e010
1 changed files with 5 additions and 1 deletions
|
|
@ -30,7 +30,11 @@ type Client struct {
|
|||
}
|
||||
|
||||
func NewClient() *Client {
|
||||
return &Client{}
|
||||
return &Client{
|
||||
RedirectUris: []string{},
|
||||
Scope: []string{},
|
||||
Audience: []string{},
|
||||
}
|
||||
}
|
||||
|
||||
func (client *Client) ClearCookies() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue