feat(gui): display inventory

This commit is contained in:
Kristofers Solo
2023-11-08 12:33:25 +02:00
parent 3ef55892da
commit 74ee80337d
5 changed files with 39 additions and 50 deletions

View File

@@ -1,10 +1,16 @@
#!/usr/bin/env python3
from pathlib import Path
from bookstore.inventory import Inventory
from ui.app import App
def main() -> None:
app = App()
db_path = Path("db.sqlite3")
inventory = Inventory(db_path)
app = App(inventory)
app.run()