we have a very basic search system working
This commit is contained in:
15
main.py
Normal file
15
main.py
Normal 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()
|
||||
Reference in New Issue
Block a user