building out ui, still not done

This commit is contained in:
2026-02-04 21:34:48 +11:00
parent 9b32c417e9
commit 6d7a3b3146
6 changed files with 164 additions and 11 deletions

View File

@@ -1,13 +1,12 @@
from textual.app import App, ComposeResult
from screens.welcome_screen import WelcomeScreen
from screens.search_screen import SearchScreen
class TuiGithub(App):
GITEA_HOST = "https://chookspace.com/"
def on_compose(self):
self.push_screen(SearchScreen())
self.push_screen(WelcomeScreen())
if __name__ == "__main__":