aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/lib/action_cable/subscription_adapter.rb
blob: 6a9d5c208052a55253f00afc96167c50579bb61a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module ActionCable
  module SubscriptionAdapter
    extend ActiveSupport::Autoload

    autoload :Base
    autoload :Test
    autoload :SubscriberMap
    autoload :ChannelPrefix
  end
end