textual/docs/examples/app/simple02.py
2022-09-18 22:02:08 +01:00

10 lines
118 B
Python

from textual.app import App
class MyApp(App):
pass
if __name__ == "__main__":
app = MyApp()
app.run()