- 将 Python 代码移至 analyzer/ 目录(含 venv) - 拆分 Go 服务器代码为模块化结构: - config/: 配置加载 - model/: 请求/响应模型 - service/: 业务逻辑 - handler/: API处理器 - 添加 .gitignore 文件 - 删除旧的独立脚本文件
24 lines
204 B
Plaintext
24 lines
204 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
analyzer/venv/
|
|
.venv/
|
|
*.egg-info/
|
|
|
|
# Go
|
|
server/billai-server
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# 临时文件
|
|
server/uploads/
|
|
server/outputs/
|
|
*.log
|
|
|