__main__.py 244 B

12345678910111213
  1. # SPDX-License-Identifier: AGPL-3.0-or-later
  2. """Command line implementation"""
  3. import typer
  4. from . import cache
  5. from . import init
  6. init()
  7. app = typer.Typer()
  8. app.add_typer(cache.app, name="cache", help="commands related to the cache")
  9. app()