File: noop_command_builder.rb

package info (click to toggle)
ruby-redis-cluster-client 0.13.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 224 kB
  • sloc: ruby: 2,498; makefile: 4
file content (13 lines) | stat: -rw-r--r-- 199 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class RedisClient
  class Cluster
    module NoopCommandBuilder
      module_function

      def generate(args, _kwargs = nil)
        args
      end
    end
  end
end