12 lines
160 B
Ruby
12 lines
160 B
Ruby
|
module CartoDB
|
||
|
class HiresGeocoderInterface
|
||
|
def run
|
||
|
raise 'Not implemented'
|
||
|
end
|
||
|
|
||
|
def cancel
|
||
|
raise 'Not implemented'
|
||
|
end
|
||
|
end
|
||
|
end
|