polycule-connect/polyculeconnect/internal/model/backend.go

18 lines
273 B
Go
Raw Permalink Normal View History

package model
import "github.com/google/uuid"
type BackendOIDCConfig struct {
Issuer string
ClientID string
ClientSecret string
RedirectURI string
Scopes []string
}
type Backend struct {
ID uuid.UUID
Name string
Config BackendOIDCConfig
}