mirror of
https://github.com/searxng/searxng
synced 2024-11-01 15:40:29 +00:00
99435381a8
This PR adds a new setting to engines named `tokens`. It expects a list of tokens which lets searx validate if the request should be accepted or not.
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',
|
|
}]
|