add basic database functionality #9

Merged
celex merged 5 commits from 2-add-functionality-to-list-chores into main 2026-05-18 15:49:14 +01:00
2 changed files with 13 additions and 2 deletions
Showing only changes of commit a6e3738b7a - Show all commits
+4 -2
View File
@@ -1,3 +1,5 @@
from .tui import ChoreManagerTui
def main_tui() -> None:
print("Hello World")
app = ChoreManagerTui()
app.run()
+9
View File
@@ -0,0 +1,9 @@
from textual.app import App, ComposeResult
from textual.widgets import Header
class ChoreManagerTui(App):
def compose(self) -> ComposeResult:
yield Header()