1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/action_cable/channel.rb
2015-07-07 19:03:57 +02:00

8 lines
275 B
Ruby

module ActionCable
module Channel
autoload :Base, 'action_cable/channel/base'
autoload :Callbacks, 'action_cable/channel/callbacks'
autoload :PeriodicTimers, 'action_cable/channel/periodic_timers'
autoload :Streams, 'action_cable/channel/streams'
end
end