47colborne/cloud-sesame

View on GitHub
lib/cloud_sesame/domain/client_module/caching/no_cache.rb

Summary

Maintainability
A
0 mins
Test Coverage
module CloudSesame
  module Domain
    module ClientModule
      module Caching
        class NoCache < Base

          def fetch(params)
            search params
          end

        end
      end
    end
  end
end