1
0
Fork 0
mirror of https://github.com/searxng/searxng.git synced 2025-03-01 02:01:01 +00:00
searxng/searx/engines/dummy.py

17 lines
199 B
Python
Raw Normal View History

"""
Dummy
@results empty array
@stable yes
"""
2014-09-02 15:20:16 +00:00
# do search-request
2014-01-25 17:07:57 +00:00
def request(query, params):
return params
2014-09-02 15:20:16 +00:00
# get response from search-request
2014-01-25 17:07:57 +00:00
def response(resp):
return []