module Redis::Commands::Pubsub

def subscribe(*channels, &block)

Listen for messages published to the given channels.
def subscribe(*channels, &block)
  _subscription(:subscribe, 0, channels, block)
end