mirror of
https://github.com/davidallendj/opaal.git
synced 2025-12-20 03:27:02 -07:00
Added CLI and more functionality
This commit is contained in:
parent
c04107cf3d
commit
053095c412
12 changed files with 199 additions and 92 deletions
15
internal/oauth/oauth.go
Normal file
15
internal/oauth/oauth.go
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
package oauth
|
||||
|
||||
type Client struct {
|
||||
Id string
|
||||
Secret string
|
||||
Issuer string
|
||||
}
|
||||
|
||||
func NewClient() *Client {
|
||||
return &Client{
|
||||
Id: "",
|
||||
Secret: "",
|
||||
Issuer: "",
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue