module Redis::Commands::Pubsub

def punsubscribe(*channels)

for further details
See the [Redis Server PUNSUBSCRIBE documentation](https://redis.io/docs/latest/commands/punsubscribe/)
Stop listening for messages posted to channels matching the given patterns.
def punsubscribe(*channels)
  _subscription(:punsubscribe, 0, channels, nil)
end