public static func auth(with password: String) -> RedisCommand<Void> {
        let args = [RESPValue(bulk: password)]
        return .init(keyword: "AUTH", arguments: args)
    }