mirror of
https://github.com/searxng/searxng
synced 2024-10-30 21:20:28 +00:00
fe419e355b
Remove the abstraction in searx.shared.SharedDict. Implement a basic and dedicated scheduler for the checker using a Redis script.
7 lines
170 B
Python
7 lines
170 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
from .impl import Checker
|
|
from .background import initialize, get_result
|
|
|
|
__all__ = ('Checker', 'initialize', 'get_result')
|