blob: d2f6fbbbc7771f4d293628aad1975f5f8e1f7c6b (
plain) (
tree)
|
|
# frozen_string_literal: true
module ActionCable
module Channel
extend ActiveSupport::Autoload
eager_autoload do
autoload :Base
autoload :Broadcasting
autoload :Callbacks
autoload :Naming
autoload :PeriodicTimers
autoload :Streams
end
end
end
|