12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- module Service
- class GeoCalendar
- include ApplicationLib
- def self.location(address = nil)
-
- backend = load_adapter_by_setting('geo_calendar_backend')
- return if !backend
-
- backend.location(address)
- end
- end
- end
|