19 lines
361 B
Python
19 lines
361 B
Python
#!/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() |