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

View File

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