Files
cursornew2026/0-1跑通全部代码.txt

27 lines
1.0 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

● 当前使用的文件夹:
| 类型 | 路径 |
|----------------|-----------------------------------------------|
| 扩展(客户端) | D:\temp\破解\cursorpro-0.4.5\extension_clean\ |
| 后端 | D:\temp\破解\cursorpro-0.4.5\backend\ |
关键文件:
extension_clean/
├── out/
│ ├── api/client.js # API 客户端
│ ├── webview/provider.js # 主逻辑(刚修复的换号写入)
│ └── extension.js # 扩展入口
├── package.json
└── *.vsix # 打包后的扩展
backend/
├── app/
│ ├── api/
│ │ ├── client.py # 客户端 API刚修复的 user-status
│ │ └── admin.py # 管理后台 API
│ ├── services/ # 业务逻辑
│ └── models/ # 数据模型
├── requirements.txt
└── start.sh