Move CLI to own package

This commit is contained in:
Joakim Hellsén 2024-06-27 11:53:39 +02:00
commit 7a1226b232
No known key found for this signature in database
GPG key ID: D196AE66FEBE1DC9
12 changed files with 273 additions and 179 deletions

6
cli/cli.py Normal file
View file

@ -0,0 +1,6 @@
import typer
app = typer.Typer(
name="FeedVault CLI",
no_args_is_help=True,
)