From b84ee14bea12fb3ebadf08924f80d80d5a53ce45 Mon Sep 17 00:00:00 2001 From: umsangdon Date: Mon, 14 Sep 2026 07:48:39 +0900 Subject: [PATCH] auto: 2026-09-14 07:48 (EOMSANGDON-HOME) --- main.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/main.py b/main.py index 98f805d1..a682f00f 100644 --- a/main.py +++ b/main.py @@ -65,6 +65,12 @@ from B08_Quantity.B08_Quantity_Router_Earthwork import router as b08_earthwork_r from B08_Quantity.B08_Quantity_Router_Material import router as b08_material_router from B08_Quantity.B08_Quantity_Router_StructureSheet import router as b08_structure_sheet_router from B09_Estimation.B09_Estimation_Router import router as b09_estimation_router +from B09_Estimation.B09_Estimation_Router_Contract import router as b09_contract_router +from B09_Estimation.B09_Estimation_Router_Execution import router as b09_execution_router +from B09_Estimation.B09_Estimation_Router_Progress import router as b09_progress_router +from B09_Estimation.B09_Estimation_Router_CostSheet import router as b09_cost_sheet_router +from B09_Estimation.B09_Estimation_Router_Edits import router as b09_edits_router +from B09_Estimation.B09_Estimation_Router_Factors import router as b09_factors_router from common_util.common_util_audit import note_api_call, record_call_burst from common_util.common_util_auth import ( require_company, @@ -636,6 +642,12 @@ app.include_router(b08_earthwork_router, dependencies=protected_with_company) app.include_router(b08_material_router, dependencies=protected_with_company) app.include_router(b08_structure_sheet_router, dependencies=protected_with_company) app.include_router(b09_estimation_router, dependencies=protected_with_company) +app.include_router(b09_cost_sheet_router, dependencies=protected_with_company) +app.include_router(b09_contract_router, dependencies=protected_with_company) +app.include_router(b09_execution_router, dependencies=protected_with_company) +app.include_router(b09_progress_router, dependencies=protected_with_company) +app.include_router(b09_edits_router, dependencies=protected_with_company) +app.include_router(b09_factors_router, dependencies=protected_with_company) # 개발 전용 잠금 해제 — 다른 라우터와 **같은 보호**를 받는다(로그인·회사·프로젝트 접근). # 그 위에 서버가 환경까지 한 번 더 본다. app.include_router(dev_unlock_router, dependencies=protected_with_company)