auto: 2026-09-09 11:47 (EOMSANGDON-HOME)

This commit is contained in:
2026-09-09 11:47:04 +09:00
parent 4fc5b38d61
commit 3af2bc2b6b
+2
View File
@@ -50,6 +50,7 @@ from B05_Profile.B05_Profile_Router_Lifecycle import router as b05_route_lifecyc
from B05_Profile.B05_Profile_Router_Replan import router as b05_route_replan_router from B05_Profile.B05_Profile_Router_Replan import router as b05_route_replan_router
from B05_Profile.B05_Profile_Structures_Router import router as b05_structures_router from B05_Profile.B05_Profile_Structures_Router import router as b05_structures_router
from B06_Section.B06_Section_Router import router as b06_section_router from B06_Section.B06_Section_Router import router as b06_section_router
from B06_Section.B06_Section_Router_Stations import router as b06_section_stations_router
from B06_Section.B06_Section_Router_Confirm import ( from B06_Section.B06_Section_Router_Confirm import (
router as b06_section_confirm_router, router as b06_section_confirm_router,
) )
@@ -538,6 +539,7 @@ app.include_router(b05_corridor_router, dependencies=protected_with_company)
app.include_router(b05_route_replan_router, dependencies=protected_with_company) app.include_router(b05_route_replan_router, dependencies=protected_with_company)
app.include_router(b05_structures_router, dependencies=protected_with_company) app.include_router(b05_structures_router, dependencies=protected_with_company)
app.include_router(b06_section_router, dependencies=protected_with_company) app.include_router(b06_section_router, dependencies=protected_with_company)
app.include_router(b06_section_stations_router, dependencies=protected_with_company)
app.include_router(b06_section_confirm_router, dependencies=protected_with_company) app.include_router(b06_section_confirm_router, dependencies=protected_with_company)
app.include_router(b06_section_haul_plan_router, dependencies=protected_with_company) app.include_router(b06_section_haul_plan_router, dependencies=protected_with_company)
app.include_router(b07_design_router, dependencies=protected_with_company) app.include_router(b07_design_router, dependencies=protected_with_company)