add initial auth0 module

This commit is contained in:
2025-12-18 08:37:22 -05:00
commit 528778753c
10 changed files with 610 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package authenticator
import "fmt"
var ErrEmptyDomain = fmt.Errorf("domain cannot be empty")
var ErrEmptyClientID = fmt.Errorf("client id cannot be empty")
var ErrEmptyClientSecret = fmt.Errorf("client secret cannot be empty")
var ErrEmptyRedirectURI = fmt.Errorf("redirect uri cannot be empty")
var ErrNoIDToken = fmt.Errorf("no id_token field in oauth2 token")