iZettle/api-model

View on GitHub
lib/api_model/cache_stategy/no_cache.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ApiModel
  module CacheStrategy
    class NoCache

      def initialize(*args)
      end

      def cache(&block)
        yield
      end

    end
  end
end