mirror of
https://github.com/searxng/searxng.git
synced 2025-07-24 13:49:26 +02:00
[enh] add plugin converting strings into hash digests
This commit is contained in:
parent
5707fba561
commit
c9593c8ffd
4 changed files with 104 additions and 1 deletions
|
@ -28,6 +28,7 @@ from searx import logger, settings, static_path
|
|||
logger = logger.getChild('plugins')
|
||||
|
||||
from searx.plugins import (oa_doi_rewrite,
|
||||
hash_plugin,
|
||||
https_rewrite,
|
||||
infinite_scroll,
|
||||
self_info,
|
||||
|
@ -163,6 +164,7 @@ def sha_sum(filename):
|
|||
|
||||
plugins = PluginStore()
|
||||
plugins.register(oa_doi_rewrite)
|
||||
plugins.register(hash_plugin)
|
||||
plugins.register(https_rewrite)
|
||||
plugins.register(infinite_scroll)
|
||||
plugins.register(self_info)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue