NullVoxPopuli/meshchat

View on GitHub
lib/meshchat/network/remote.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
module Meshchat
  module Network
    module Remote
      extend ActiveSupport::Autoload
      eager_autoload do
        autoload :Connection
        autoload :RelayPool
        autoload :Relay
      end
    end
  end
end