Added CLI and more functionality

This commit is contained in:
David Allen 2024-02-21 17:51:59 -07:00
parent c04107cf3d
commit 053095c412
12 changed files with 199 additions and 92 deletions

15
internal/oauth/oauth.go Normal file
View file

@ -0,0 +1,15 @@
package oauth
type Client struct {
Id string
Secret string
Issuer string
}
func NewClient() *Client {
return &Client{
Id: "",
Secret: "",
Issuer: "",
}
}