1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-29 08:00:24 +02:00
searxng/searx/search/checker/__init__.py

8 lines
213 B
Python
Raw Normal View History

# SPDX-License-Identifier: AGPL-3.0-or-later
# pylint: disable=missing-module-docstring
2020-12-24 09:28:16 +01:00
from .impl import Checker
from .background import initialize, get_result
__all__ = ('Checker', 'initialize', 'get_result')