Files
searxng/searx/engines/dummy-offline.py
T

13 lines
167 B
Python
Raw Normal View History

2020-02-01 11:01:17 +01:00
"""
Dummy Offline
@results one result
@stable yes
"""
def search(query, request_params):
return [{
'result': 'this is what you get',
}]