rmi-backend/app/token_deployer.py
cryptorugmunch bd412acb2b refactor(domains): merge token/tokens + scanner/scanners, drop empty app/domain/
- Move app/domains/tokens/deployer.py -> app/domains/token/deployer.py.
  Delete app/domains/tokens/ (was a single-file shadow of the token domain).
- Move app/domains/scanner/* into app/domains/scanners/core/. The 31
  detector modules in app/domains/scanners/ + the core service are now
  a single coherent domain.
- Update import paths in app/token_scanner.py and app/token_deployer.py.
- Delete empty app/domain/ (singular, was a leftover scaffold).
- Factory still loads 466 routes, mypy-gate clean.
2026-07-07 17:48:53 +07:00

19 lines
525 B
Python

"""token_deployer.py - DEPRECATED shim. Use app.domains.token.deployer.
Phase 4 of AUDIT-2026-Q3.md moved this to app/domains/token/deployer/.
This shim re-exports the public surface for legacy callers.
"""
from app.domains.token.deployer import * # noqa: F403
from app.domains.token.deployer import ( # noqa: F401
ChainDeployer,
DeploymentStorage,
DeployParams,
EVMDeployer,
SolanaDeployer,
TokenDeployerFactory,
TokenDeployment,
TronDeployer,
_storage,
get_storage,
logger,
)