use crate::resp::*;
pub const ACL_WRONGPASS_ERROR: Value =
Value::StaticError("WRONGPASS invalid username-password pair or user is disabled.");
pub const BLOCKED_UNBLOCKED_ERROR: Value = Value::StaticError(
"UNBLOCKED force unblock from blocking operation, instance state changed (master -> replica?)",
);
pub const BLOCKED_NOGROUP_ERROR: Value =
Value::StaticError("NOGROUP the consumer group this client was blocked on no longer exists");
pub const CLUSTER_IOERR_ERROR: Value =
Value::StaticError("IOERR error or timeout connecting to the client");
pub const NOAUTH_ERROR: Value = Value::StaticError("NOAUTH Authentication required.");
pub const STRING_OK: Value = Value::StaticString("OK");