Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
244 Bytes
package oidc
import (
"github.com/target/goalert/auth/nonce"
"github.com/target/goalert/keyring"
)
// Config provides necessary parameters for OIDC authentication.
type Config struct {
Keyring keyring.Keyring
NonceStore *nonce.Store
}