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 08:28:16 +00:00
from .impl import Checker
from .background import initialize, get_result
__all__ = ('Checker', 'initialize', 'get_result')