1234567891011121314151617181920212223242526272829303132333435363738394041 |
- module Service
- class GeoIp
- include ApplicationLib
- def self.location(address)
-
- backend = load_adapter_by_setting('geo_ip_backend')
- return if !backend
-
- backend.location(address)
- end
- end
- end
|