gotosocial/internal/gtsmodel/client.go

10 lines
203 B
Go
Raw Normal View History

2021-09-01 09:45:01 +00:00
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
}