aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_cable/connection.rb
blob: a9048926e4fe648125fb431af7d93b15eb8e6fcd (plain) (blame)
1
2
3
4
5
6
7
8
module ActionCable
  module Connection
    autoload :Base, 'action_cable/connection/base'
    autoload :InternalChannel, 'action_cable/connection/internal_channel'
    autoload :Identifier, 'action_cable/connection/identifier'
    autoload :TaggedLoggerProxy, 'action_cable/connection/tagged_logger_proxy'
  end
end