mirror of
https://github.com/searxng/searxng
synced 2024-10-30 21:20:28 +00:00
17 lines
199 B
Python
17 lines
199 B
Python
"""
|
|
Dummy
|
|
|
|
@results empty array
|
|
@stable yes
|
|
"""
|
|
|
|
|
|
# do search-request
|
|
def request(query, params):
|
|
return params
|
|
|
|
|
|
# get response from search-request
|
|
def response(resp):
|
|
return []
|