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

4
cli/__main__.py Normal file
View file

@ -0,0 +1,4 @@
from cli.cli import app
if __name__ == "__main__":
app()