aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_cable/connection.rb
blob: 991dd85c57b74ac5e642d9d07b358e4ff309c43e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module ActionCable
  module Connection
    autoload :Base, 'action_cable/connection/base'
    autoload :Heartbeat, 'action_cable/connection/heartbeat'
    autoload :Identification, 'action_cable/connection/identification'
    autoload :InternalChannel, 'action_cable/connection/internal_channel'
    autoload :Subscriptions, 'action_cable/connection/subscriptions'
    autoload :TaggedLoggerProxy, 'action_cable/connection/tagged_logger_proxy'
  end
end