1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actioncable/lib/action_cable/connection.rb

23 lines
489 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2015-04-04 01:26:14 -04:00
module ActionCable
module Connection
extend ActiveSupport::Autoload
eager_autoload do
autoload :Authorization
autoload :Base
autoload :ClientSocket
autoload :Identification
autoload :InternalChannel
autoload :MessageBuffer
autoload :Stream
autoload :StreamEventLoop
autoload :Subscriptions
autoload :TaggedLoggerProxy
autoload :TestCase
autoload :WebSocket
end
2015-04-04 01:26:14 -04:00
end
end