Skip to content
This repository was archived by the owner on Apr 22, 2026. It is now read-only.

Commit 06f3b3a

Browse files
committed
refactor(structure): 迁移核心模块到codex_register包
1 parent c627505 commit 06f3b3a

27 files changed

Lines changed: 54 additions & 49 deletions

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,15 @@ CodeX Register 是一个桌面化的 Web 控制台,用于统一管理注册流
3535

3636
```text
3737
gui.py
38-
-> gui_server_runtime.py (本地 HTTP API + UI 托管)
39-
-> gui_frontend.py (组装 HTML/CSS/JS)
40-
-> gui_service.py (核心编排/状态/日志)
41-
-> r_with_pwd.py (注册与 OAuth 主流程)
42-
-> mail_services.py + mail_providers/ (邮箱服务抽象与各 Provider 模块)
38+
-> codex_register/gui_server_runtime.py (本地 HTTP API + UI 托管)
39+
-> codex_register/gui_frontend.py (组装 HTML/CSS/JS)
40+
-> codex_register/gui_service.py (核心编排/状态/日志)
41+
-> codex_register/r_with_pwd.py (注册与 OAuth 主流程)
42+
-> codex_register/mail_services.py + codex_register/mail_providers/ (邮箱服务抽象与各 Provider 模块)
4343
```
4444

45+
目录整理后,核心 Python/前端资源统一放在 `codex_register/`,根目录只保留入口、配置、脚本和文档。
46+
4547
## 环境要求
4648

4749
- Python `>= 3.10`

codex_register/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"""CodeX Register package."""
2+
3+
__all__ = []
File renamed without changes.

0 commit comments

Comments
 (0)