10 lines
118 B
Python
10 lines
118 B
Python
from textual.app import App
|
|
|
|
|
|
class MyApp(App):
|
|
pass
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = MyApp()
|
|
app.run()
|