- Make app/domains/auth/ and app/core/redis.py mypy-clean under strict. - Add mypy-gate.ini and Makefile mypy-gate target; promote typecheck-gate in CI. - Consolidate domains into app/domains/: bulletin, admin, intelligence, markets. - Extract referral domain incl. DeFi partner DEX ref links; keep Telegram bot wired. - Move app/mcp/ package and app/api/v1/mcp/router into app/domains/mcp/. - Archive dead app/mcp_router.py.
8 lines
364 B
Python
8 lines
364 B
Python
"""Deprecated shim - re-exports app.domains.intelligence.n8n_intelligence_workflows.
|
|
|
|
Migrate imports from `app.n8n_intelligence_workflows` to `app.domains.intelligence.n8n_intelligence_workflows`.
|
|
This shim will be removed in Phase 3 cleanup.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
from app.domains.intelligence.n8n_intelligence_workflows import * # noqa: F403
|