auth/internal/model/client.go

12 lines
200 B
Go

package model
type Client struct {
ID string
URL string
Name string
Logo string
RedirectURI []string
}
func (Client) Bucket() []byte { return []byte("clients") }