rebuild(runtime): govern market operations and job truth

This commit is contained in:
leefer
2026-07-30 10:14:29 +08:00
parent 4fc8691eee
commit d8f0dd930c
39 changed files with 2224 additions and 79 deletions
+2
View File
@@ -4,6 +4,7 @@ from backend.features.accounts.routes import router as accounts_router
from backend.features.heaven.routes import router as heaven_router
from backend.features.market.routes import router as market_router
from backend.features.mentor.routes import router as mentor_router
from backend.features.operations.routes import router as operations_router
from backend.features.review.routes import router as review_router
from backend.features.screener.routes import router as screener_router
from backend.http.routes.health import router as health_router
@@ -16,3 +17,4 @@ api_router.include_router(screener_router)
api_router.include_router(mentor_router)
api_router.include_router(heaven_router)
api_router.include_router(review_router)
api_router.include_router(operations_router)