1
0
mirror of https://github.com/searxng/searxng.git synced 2024-08-22 14:10:44 +02:00
searxng/searx/engines/dummy-offline.py

13 lines
167 B
Python
Raw Normal View History

"""
Dummy Offline
@results one result
@stable yes
"""
def search(query, request_params):
return [{
'result': 'this is what you get',
}]