mirror of https://github.com/searxng/searxng.git
13 lines
167 B
Python
13 lines
167 B
Python
|
"""
|
||
|
Dummy Offline
|
||
|
|
||
|
@results one result
|
||
|
@stable yes
|
||
|
"""
|
||
|
|
||
|
|
||
|
def search(query, request_params):
|
||
|
return [{
|
||
|
'result': 'this is what you get',
|
||
|
}]
|