first commit: DuoPlus云手机协议注册工具 - 完整实现

This commit is contained in:
huangzhenpc
2025-08-12 14:33:24 +08:00
commit f9dcea2d06
15 changed files with 2314 additions and 0 deletions

19
main.py Normal file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
DuoPlus 协议注册工具 - 主入口
"""
import os
import sys
from duoplus_register import main
if __name__ == "__main__":
# 检查 Python 版本
if sys.version_info < (3, 6):
print("错误:需要 Python 3.6 或更高版本")
sys.exit(1)
# 运行主程序
main()