diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-09-25 11:29:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-25 11:29:25 +0200 |
| commit | b046322c7b9467a7de6e9e289e1c5b0c0baaf4a6 (patch) | |
| tree | 13174681c3d10bcc86faa417c9fb639e0a98692e /searx/data/__init__.py | |
| parent | 0c3314b33872d68d97d8aede8786a7f56f9831d8 (diff) | |
| parent | 39876d9f144700b223819a0f50101625a1b85e3c (diff) | |
Merge pull request #333 from dalf/enh-engine-descriptions
RFC: /preferences: display engine descriptions
Diffstat (limited to 'searx/data/__init__.py')
| -rw-r--r-- | searx/data/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/searx/data/__init__.py b/searx/data/__init__.py index 0f40355ec..9c9d74129 100644 --- a/searx/data/__init__.py +++ b/searx/data/__init__.py @@ -14,6 +14,7 @@ __all__ = [ 'WIKIDATA_UNITS', 'EXTERNAL_BANGS', 'OSM_KEYS_TAGS', + 'ENGINE_DESCRIPTIONS', 'ahmia_blacklist_loader', ] @@ -45,3 +46,4 @@ EXTERNAL_URLS = _load('external_urls.json') WIKIDATA_UNITS = _load('wikidata_units.json') EXTERNAL_BANGS = _load('external_bangs.json') OSM_KEYS_TAGS = _load('osm_keys_tags.json') +ENGINE_DESCRIPTIONS = _load('engine_descriptions.json') |