summaryrefslogtreecommitdiff
path: root/searx/favicons/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/favicons/__main__.py')
-rw-r--r--searx/favicons/__main__.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/searx/favicons/__main__.py b/searx/favicons/__main__.py
new file mode 100644
index 000000000..c515edfea
--- /dev/null
+++ b/searx/favicons/__main__.py
@@ -0,0 +1,12 @@
+# SPDX-License-Identifier: AGPL-3.0-or-later
+"""Command line implementation"""
+
+import typer
+
+from . import cache
+from . import init
+
+init()
+app = typer.Typer()
+app.add_typer(cache.app, name="cache", help="commands related to the cache")
+app()