blob: 24028fd6908f22f87fc88bee962c8cc5dbfa22d3 (
plain)
1
2
3
4
5
6
7
8
9
|
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
}
|