Minor changes and update

This commit is contained in:
David J. Allen 2024-02-26 14:08:10 -07:00
parent 1859a3c58e
commit 038ca3c84a
No known key found for this signature in database
GPG key ID: 717C593FF60A2ACC
3 changed files with 40 additions and 41 deletions

View file

@ -1,15 +0,0 @@
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{""},
}
}