mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2024-11-23 04:43:13 +00:00
9 lines
203 B
Go
9 lines
203 B
Go
package gtsmodel
|
|
|
|
// Client is a handy little wrapper for typical oauth client details
|
|
type Client struct {
|
|
ID string `bun:"type:CHAR(26),pk,notnull"`
|
|
Secret string
|
|
Domain string
|
|
UserID string
|
|
}
|