1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-12 16:30:33 +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',
}]