mirror of
https://github.com/searxng/searxng.git
synced 2024-11-15 17:10:32 +01:00
13 lines
244 B
Python
13 lines
244 B
Python
|
# 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()
|