r7kamura/ellen

View on GitHub
lib/ruboty/commands/base.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Ruboty
  module Commands
    class Base
      attr_reader :options

      def initialize(options)
        @options = options
      end
    end
  end
end