aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/lib/action_cable/channel.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actioncable/lib/action_cable/channel.rb')
-rw-r--r--actioncable/lib/action_cable/channel.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/actioncable/lib/action_cable/channel.rb b/actioncable/lib/action_cable/channel.rb
new file mode 100644
index 0000000000..d5118b9dc9
--- /dev/null
+++ b/actioncable/lib/action_cable/channel.rb
@@ -0,0 +1,17 @@
+# 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
+ autoload :TestCase
+ end
+ end
+end