.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
__main__.py
Go to the documentation of this file.
1# SPDX-License-Identifier: AGPL-3.0-or-later
2"""Command line implementation"""
3
4import typer
5
6from . import cache
7from . import init
8
9init()
10app = typer.Typer()
11app.add_typer(cache.app, name="cache", help="commands related to the cache")
12app()