add op.AllAuthMethods (#233)

This commit is contained in:
David Sharnoff 2022-10-16 23:07:19 -07:00 committed by GitHub
parent 3a7b2e8eb5
commit 4bc4bfffe8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -157,3 +157,7 @@ const (
AuthMethodNone AuthMethod = "none"
AuthMethodPrivateKeyJWT AuthMethod = "private_key_jwt"
)
var AllAuthMethods = []AuthMethod{
AuthMethodBasic, AuthMethodPost, AuthMethodNone, AuthMethodPrivateKeyJWT,
}