This commit is contained in:
Waylon Walker 2024-03-01 07:10:57 -06:00
parent 85554e2169
commit a21dbb08d4
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
8 changed files with 285 additions and 43 deletions

11
sqlmodel_base/cli.py Normal file
View file

@ -0,0 +1,11 @@
import typer
from sqlmodel_base.hero.cli import hero_app
app = typer.Typer()
app.add_typer(hero_app, name="hero")
if __name__ == "__main__":
app()