class Redis::Subscription

def initialize

def initialize
  @callbacks = Hash.new do |hash, key|
    hash[key] = ->(*_) {}
  end
  yield(self)
end