新增市場情報 queue review inventory
Some checks failed
CD Pipeline / deploy (push) Has been cancelled

This commit is contained in:
OoO
2026-05-19 13:00:46 +08:00
parent e7e045253d
commit bdae154237
11 changed files with 1030 additions and 93 deletions

3
app.py
View File

@@ -385,6 +385,9 @@ sys_log.info("[Blueprint] ✅ pchome_bp 已註冊")
from routes.market_intel_routes import market_intel_bp
app.register_blueprint(market_intel_bp)
sys_log.info("[Blueprint] ✅ market_intel_bp 已註冊")
from routes.market_intel_review_routes import market_intel_review_bp
app.register_blueprint(market_intel_review_bp)
sys_log.info("[Blueprint] ✅ market_intel_review_bp 已註冊")
# V-Fix: 註冊 slugify 函數供模板使用(實作搬至 utils/text_helpers.py
from utils.text_helpers import slugify # noqa: E402