From b1af8fd87760b34e3ff2fd3bda38f211815a0473 Mon Sep 17 00:00:00 2001 From: Terin Stock Date: Sun, 9 Mar 2025 17:47:56 +0100 Subject: [chore] remove vendor --- .../oauth2/v4/models/client.go | 35 ---------------------- 1 file changed, 35 deletions(-) delete mode 100644 vendor/code.superseriousbusiness.org/oauth2/v4/models/client.go (limited to 'vendor/code.superseriousbusiness.org/oauth2/v4/models/client.go') 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 -} -- cgit v1.2.3