Files
MaaAssistantArknights/tools/RoguelikeRecruitmentTool/main.py
Weiyou Wang b1241f4f74 feat: 肉鸽招募设置 recruitment.json 文件维护工具 (#9700)
* feat: recruitment_tool

* fix: delete duplicate items from recruitment.json

* refactor: refine doc fields in recruitment.json files

* fix: 修复 recruitment 数据完整性

* refactor: refine recruitment.json files

* chore: update .gitignore file
2024-08-08 06:30:32 +10:00

11 lines
250 B
Python

from pathlib import Path
from roguelike_recruitment_tool import RecruitmentTool
if __name__ == "__main__":
resource_path = Path(__file__).resolve().parent.parent.parent / "resource"
app = RecruitmentTool(resource_path, [])
app.exec()