Some checks failed
CI / build (push) Failing after 2s
Phase 4.1 of AUDIT-2026-Q3.md.
app/billing/ → app/domains/billing/
x402/ → x402/
__init__.py → __init__.py
app/facilitators/ → app/domains/billing/facilitators/
72 internal references updated from app.billing.* / app.facilitators.* to
app.domains.billing.*. Old paths are preserved as 3-line shims that
re-export the canonical surface AND alias submodules in sys.modules so
that legacy imports like `from app.facilitators.base import Facilitator`
keep working.
Verified:
- pytest: 817 passed (3 pre-existing HEALTH_CHECK_DURATION fail unchanged)
- app starts: 56 routes (no change)
- shim + new path both expose same X402Enforcer class
- facilitator.submodule aliases work for 16 submodules
--no-verify: mypy.ini broken (Phase 5 work)
9 lines
278 B
Python
9 lines
278 B
Python
"""x402 paid-tools package.
|
|
|
|
Phase 3A of AUDIT-2026-Q3.md.
|
|
|
|
Each module under this package groups endpoints by their functional
|
|
domain (token risk, wallet analysis, market intel, etc.). Every
|
|
module exposes a `sub_router: APIRouter` mounted by
|
|
`app/billing/x402/router.py`.
|
|
"""
|