mirror of
https://github.com/davidallendj/opaal.git
synced 2025-12-20 11:37:01 -07:00
15 lines
278 B
Go
15 lines
278 B
Go
package oauth
|
|
|
|
type Client struct {
|
|
Id string `yaml:"id"`
|
|
Secret string `yaml:"secret"`
|
|
RedirectUris []string `yaml:"redirect_uris"`
|
|
}
|
|
|
|
func NewClient() *Client {
|
|
return &Client{
|
|
Id: "",
|
|
Secret: "",
|
|
RedirectUris: []string{""},
|
|
}
|
|
}
|