forked from baron/baron-sso
11 lines
218 B
Go
11 lines
218 B
Go
package repository
|
|
|
|
import (
|
|
"baron-sso-backend/internal/domain"
|
|
"context"
|
|
)
|
|
|
|
type FederationRepository interface {
|
|
FindProviderByID(ctx context.Context, providerID string) (*domain.IdentityProviderConfig, error)
|
|
}
|