build: 使用 uv 包管理器

This commit is contained in:
2026-01-09 00:47:34 +08:00
parent 264af76fad
commit 4cb6edf073
12 changed files with 886 additions and 67 deletions

View File

@@ -12,7 +12,9 @@ from .screens.repocreator import RepoCreatorScreen
logger = get_logger(__name__)
app = HeurAMSApp()
def main():
app = HeurAMSApp()
app.run()
if __name__ == "__main__":
app.run()
main()