Files
zitadel/internal/command/errors/errors.go
T

10 lines
135 B
Go
Raw Normal View History

package errors
type WrongPasswordError struct {
FailedAttempts int32
}
func (wpe *WrongPasswordError) Error() string {
return ""
}