polycule-connect/polyculeconnect/internal/model/backend.go
Melora Hugues 8d805cefe6
Some checks failed
/ docker-build-only (push) Failing after 27s
/ go-test (push) Failing after 1m18s
Cleanup DB a bit, and start correctly handling users (#42)
2024-10-18 22:06:05 +02:00

17 lines
273 B
Go

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
}