we have a very basic search system working

This commit is contained in:
2026-02-04 19:30:41 +11:00
parent 33ce1aac67
commit de101e8dfb
6 changed files with 213 additions and 0 deletions

15
main.py Normal file
View File

@@ -0,0 +1,15 @@
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())
if __name__ == "__main__":
app = TuiGithub()
app.run()