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