mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-21 09:40:13 +01:00
8 lines
207 B
Ruby
8 lines
207 B
Ruby
|
|
require 'google_search_service'
|
||
|
|
|
||
|
|
class SearchController < ApplicationController
|
||
|
|
wsdl_service_name 'GoogleSearch'
|
||
|
|
web_service_dispatching_mode :delegated
|
||
|
|
web_service :beta3, GoogleSearchService.new
|
||
|
|
end
|