aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/lib/action_cable/connection.rb
blob: b672e006828e989a0e460a050c5ff5450ac5d8cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module ActionCable
  module Connection
    extend ActiveSupport::Autoload

    eager_autoload do
      autoload :Authorization
      autoload :Base
      autoload :Identification
      autoload :InternalChannel
      autoload :MessageBuffer
      autoload :WebSocket
      autoload :Subscriptions
      autoload :TaggedLoggerProxy
    end
  end
end