File: redis_cluster_client.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 (11 lines) | stat: -rw-r--r-- 182 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'redis_client/cluster_config'

class RedisClient
  class << self
    def cluster(**kwargs)
      ClusterConfig.new(**kwargs)
    end
  end
end