lib/prpr/action/base.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Prpr
  module Action
    class Base
      attr_reader :event

      def initialize(event)
        @event = event
      end

      def env
        Config::Env.default
      end
    end
  end
end