adham90/elastic_map

View on GitHub
lib/elastic_map/search/helpers.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module ElasticMap
  class Search
    module Helpers
      class << self
        def first
          new(username: 'first_name')
        end
      end
    end
  end
end