rails/actioncable/lib/action_cable/connection.rb
2015-12-14 15:48:54 +01:00

17 lines
349 B
Ruby

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