aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_cable/connection.rb
blob: 3d6ed6a6e813466fcd4d3cb277b0ccedef02803a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module ActionCable
  module Connection
    autoload :Authorization, 'action_cable/connection/authorization'
    autoload :Base, 'action_cable/connection/base'
    autoload :Identification, 'action_cable/connection/identification'
    autoload :InternalChannel, 'action_cable/connection/internal_channel'
    autoload :MessageBuffer, 'action_cable/connection/message_buffer'
    autoload :WebSocket, 'action_cable/connection/web_socket'
    autoload :Subscriptions, 'action_cable/connection/subscriptions'
    autoload :TaggedLoggerProxy, 'action_cable/connection/tagged_logger_proxy'
  end
end