feat: 新增技能扩展N15一章相关示例源码

This commit is contained in:
100gle
2023-03-09 09:43:45 +08:00
parent ed1a7eb61d
commit e963474669
6 changed files with 286 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
from textual.app import App
class SimpleApp(App):
pass
if __name__== '__main__':
app = SimpleApp()
app.run()