flant/superhosting

View on GitHub
lib/superhosting/config_executor/mux.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Superhosting
  module ConfigExecutor
    class Mux < Base
      attr_accessor :mux

      def initialize(mux:, **kwargs)
        self.mux = mux
        super(**kwargs)
      end

      protected

      def base_mapper
        mux
      end
    end
  end
end