checkhand/run_web_service.py
2025-08-11 12:24:21 +08:00

15 lines
249 B
Python
Executable File

#!/usr/bin/env python3
"""
启动手部检测Web服务
"""
import sys
import os
# 添加src目录到Python路径
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src'))
from web_server import main
if __name__ == '__main__':
main()