Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
344 Bytes
package github
import (
"github.com/target/goalert/auth/nonce"
"github.com/target/goalert/keyring"
)
// Config is used to configure the GitHub OAuth2 provider. If none of Organization, Teams, or Users are
// specified as criteria, any valid user will be accepted.
type Config struct {
Keyring keyring.Keyring
NonceStore *nonce.Store
}