mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-17 18:01:26 +08:00
* 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
11 lines
250 B
Python
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()
|