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