YotpoLtd/geoip2

View on GitHub
lib/geoip2/api/country.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Geoip2
  module Api
    module Country
      def country(ip, faraday_options = {})
        get("/country/#{ip}", {}, faraday_options)
      end
    end
  end
end