summaryrefslogtreecommitdiff
path: root/searx/search/checker/__init__.py
blob: f6891a5db00573ef66fbd84cbed3426f4d019c3c (plain)
1
2
3
4
5
6
7
# SPDX-License-Identifier: AGPL-3.0-or-later
# pylint: disable=missing-module-docstring

from .impl import Checker
from .background import initialize, get_result

__all__ = ('Checker', 'initialize', 'get_result')