polycule-connect/polyculeconnect/internal/model/backend.go
Melora Hugues b0e0a19c97
Some checks failed
/ docker-build-only (push) Failing after 30s
/ go-test (push) Failing after 1m14s
Replace previous backend service with new storage (#48)
2024-08-16 13:49:59 +02:00

16 lines
262 B
Go

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