diff --git a/bundles/authenticator/authenticator.go b/bundles/authenticator/authenticator.go index 397bdfb..ae1e132 100644 --- a/bundles/authenticator/authenticator.go +++ b/bundles/authenticator/authenticator.go @@ -14,3 +14,6 @@ type Claim struct { Email string jwt.StandardClaims } + +// Authenticator is the struct for the authenticator bundle +type Authenticator struct {} diff --git a/bundles/authenticator/token.go b/bundles/authenticator/token.go index 95abe16..efcf868 100644 --- a/bundles/authenticator/token.go +++ b/bundles/authenticator/token.go @@ -10,8 +10,6 @@ import ( log "github.com/sirupsen/logrus" ) -type Authenticator struct {} - // Rsa is the struct to get the rsa keys used to generate and verify tokens from the environment variables type Rsa struct { PublicKeyPath string