| 123456789101112 | # SPDX-License-Identifier: AGPL-3.0-or-later"""Command line implementation"""import typerfrom . import cachefrom . import initinit()app = typer.Typer()app.add_typer(cache.app, name="cache", help="commands related to the cache")app()
 |