- web_ui.py: major refactor with improved runner, mode selection, progress tracking - scripts: add device_runtime, device_calibrate, calibration_trace, record_android_flow - docs: add phone-control-manual, update device-adaptation and windows-migration - invoice_tool: enhance H5 automation flow and visual fallback - calibrate.py: expand calibration capabilities - add skills/ and tests/ directories - remove obsolete .opencode/skills/invoice-wrapup Co-Authored-By: Claude <noreply@anthropic.com>
11 lines
194 B
Python
11 lines
194 B
Python
#!/usr/bin/env python3
|
||
"""跨平台前台启动入口:macOS、Windows、Linux 均可用。"""
|
||
|
||
from __future__ import annotations
|
||
|
||
import web_ui
|
||
|
||
|
||
if __name__ == "__main__":
|
||
web_ui.main()
|