summaryrefslogtreecommitdiff
path: root/vendor/code.superseriousbusiness.org/oauth2/v4/models/client.go
diff options
context:
space:
mode:
authorLibravatar Terin Stock <terinjokes@gmail.com>2025-03-09 17:47:56 +0100
committerLibravatar Terin Stock <terinjokes@gmail.com>2025-12-01 22:08:04 +0100
commitb1af8fd87760b34e3ff2fd3bda38f211815a0473 (patch)
tree9317fad1a7ec298d7a8d2678e4e422953bbc6f33 /vendor/code.superseriousbusiness.org/oauth2/v4/models/client.go
parent[chore] update URLs to forked source (diff)
downloadgotosocial-b1af8fd87760b34e3ff2fd3bda38f211815a0473.tar.xz
[chore] remove vendor
Diffstat (limited to 'vendor/code.superseriousbusiness.org/oauth2/v4/models/client.go')
-rw-r--r--vendor/code.superseriousbusiness.org/oauth2/v4/models/client.go35
1 files changed, 0 insertions, 35 deletions
diff --git a/vendor/code.superseriousbusiness.org/oauth2/v4/models/client.go b/vendor/code.superseriousbusiness.org/oauth2/v4/models/client.go
deleted file mode 100644
index c31ad7fb0..000000000
--- a/vendor/code.superseriousbusiness.org/oauth2/v4/models/client.go
+++ /dev/null
@@ -1,35 +0,0 @@
-package models
-
-// Client client model
-type Client struct {
- ID string
- Secret string
- Domain string
- Public bool
- UserID string
-}
-
-// GetID client id
-func (c *Client) GetID() string {
- return c.ID
-}
-
-// GetSecret client secret
-func (c *Client) GetSecret() string {
- return c.Secret
-}
-
-// GetDomain client domain
-func (c *Client) GetDomain() string {
- return c.Domain
-}
-
-// IsPublic public
-func (c *Client) IsPublic() bool {
- return c.Public
-}
-
-// GetUserID user id
-func (c *Client) GetUserID() string {
- return c.UserID
-}