class Slack::RealTime::Client

def send_json(data)

def send_json(data)
  fail ClientNotStartedError unless started?
  logger.debug("#{self.class}##{__method__}") { data }
  @socket.send_data(data.to_json)
end