r7kamura/ellen

View on GitHub
lib/ruboty/brains/memory.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Ruboty
  module Brains
    class Memory < Base
      def data
        @data ||= {}
      end
    end
  end
end