fix(700줄분리): 진입 파일에서 분리 전 이름 전부 재노출

laptop-sub 가 쓴 AST 대조법(분리 전 커밋의 모듈 정의 이름 ↔ 지금 모듈 `dir()`)을
내 4개에도 적용해 누락 26개를 찾아 되살림.

- `B03_FileInput_Router.py` 누락 17 → 0 (헬퍼 13 + 청크 엔드포인트 4)
- `B03_FileInput_Router_Temp.py` 누락 5 → 0 (`_total_chunks` + 청크 엔드포인트 4)
- `B07_DesignDetail_Router_Support.py` 누락 3 → 0 (`_BASIN_MAX_DISTANCE_M` ·
  `_clip_segment` · `_geometry_lines`)
- `config/config_system.py` 누락 1 → 0 (`_SCS_SOIL` — `import *` 가 밑줄 이름을 안 실음)

검증: 네 파일 모두 **정의 이름 누락 0**(28·19·36·246개 대조), 라우트 수 유지
(B03 7 · temp 9+attach 1 · B07 7), ruff check 통과, tmp/tests 378 passed

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-09-04 10:53:37 +09:00
co-authored by Claude Opus 5
parent 322a2f1f13
commit fbbedc7230
4 changed files with 104 additions and 9 deletions
+1
View File
@@ -111,6 +111,7 @@ AUTO_DESIGN_CHAIN_ENABLED = os.getenv("AUTO_DESIGN_CHAIN_ENABLED", "True").lower
# 5장(지형·설계 파라미터)은 파일이 700줄을 넘어 떼어냈다(2026-09-04).
# 여기서 그대로 다시 내보내므로 `from config.config_system import …` 호출부는 불변이다.
from config.config_system_design import * # noqa: E402,F401,F403
from config.config_system_design import _SCS_SOIL as _SCS_SOIL # noqa: E402
from config.config_system_terrain import * # noqa: E402,F401,F403
# ─────────────────────────────────────────────────────────────────────────