mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
22 lines
489 B
Ruby
22 lines
489 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|
|
end
|
|
end
|