summaryrefslogtreecommitdiff
path: root/pkg/auth/interfaces.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/auth/interfaces.go')
-rw-r--r--pkg/auth/interfaces.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/auth/interfaces.go b/pkg/auth/interfaces.go
index 619eff8..e5a24aa 100644
--- a/pkg/auth/interfaces.go
+++ b/pkg/auth/interfaces.go
@@ -22,5 +22,5 @@ import (
type Authenticator interface {
GetLabel() string
NeedsCredentials() bool
- CheckCredentials(*creds.Credentials) bool
+ CheckCredentials(*creds.Credentials) (bool, error)
}