fix(B04): 분리로 사라진 이름을 진입 라우터에서 재노출
700줄 분리 때 _Router_Progress · _Router_Status 로 옮겨 진입 파일에서 안 보이게 된 PROGRESS_FILE_RELATIVE · _progress_file_path · read_surface_progress · get_wf1_analysis_status · get_surface_model_preview 를 as 재노출로 되살림. 옛 경로를 보던 호출부·테스트가 그대로 동작하게 하려는 것(laptop-main 의 B07 사례와 같은 사고 예방). 검증: 분리 전 모듈 정의 이름을 전수 대조해 누락 0개(_Router 16개 · _Router_Watershed 30개), 라우트 9개 유지, ruff check/format 통과, tmp/tests 183 passed. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -29,8 +29,22 @@ from B04_PreProcess.B04_PreProcess_Repository import (
|
||||
list_surface_models,
|
||||
save_surface_analysis_to_db,
|
||||
)
|
||||
|
||||
# 700줄 분리로 옮긴 이름을 **진입 파일에서 그대로 다시 노출**한다 — 옛 경로를 보던
|
||||
# 호출부·테스트가 그대로 동작하게 하려는 것(2026-09-04, laptop-main 사례로 확인).
|
||||
from B04_PreProcess.B04_PreProcess_Router_Progress import (
|
||||
write_surface_progress,
|
||||
PROGRESS_FILE_RELATIVE as PROGRESS_FILE_RELATIVE,
|
||||
)
|
||||
from B04_PreProcess.B04_PreProcess_Router_Progress import _progress_file_path as _progress_file_path
|
||||
from B04_PreProcess.B04_PreProcess_Router_Progress import (
|
||||
read_surface_progress as read_surface_progress,
|
||||
)
|
||||
from B04_PreProcess.B04_PreProcess_Router_Progress import write_surface_progress
|
||||
from B04_PreProcess.B04_PreProcess_Router_Status import (
|
||||
get_surface_model_preview as get_surface_model_preview,
|
||||
)
|
||||
from B04_PreProcess.B04_PreProcess_Router_Status import (
|
||||
get_wf1_analysis_status as get_wf1_analysis_status,
|
||||
)
|
||||
from B04_PreProcess.B04_PreProcess_Router_Status import router as status_router
|
||||
from B04_PreProcess.B04_PreProcess_Schema import (
|
||||
|
||||
Reference in New Issue
Block a user