module Slack::RealTime::Config

def detect_concurrency

def detect_concurrency
  Slack::RealTime::Concurrency.const_get(:Async)
rescue LoadError, NameError
  raise NoConcurrencyError, 'Missing concurrency. Add async-websocket to your Gemfile.'
end