repo hygiene: track the PINK launcher import closure
67 production .py modules that the running PINK service imports but which were never committed: prod/bingx/ (HTTP client, market/user streams, journal, config), prod/clean_arch/ adapters/persistence/runtime/dita/dita_v2 production modules and their co-located tests. Rule going forward: every module imported by launch_dolphin_pink.py / pink_direct.py must appear in git ls-files. Excludes _backup dirs, __pycache__, and non-code files. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
19
prod/bingx/__init__.py
Normal file
19
prod/bingx/__init__.py
Normal file
@@ -0,0 +1,19 @@
|
||||
"""BingX execution adapter components for Nautilus Trader."""
|
||||
|
||||
from .config import BingxExecClientConfig
|
||||
from .config import BingxInstrumentProviderConfig
|
||||
from .data_config import BingxDataClientConfig
|
||||
from .enums import BingxEnvironment
|
||||
from .data_factories import BingxLiveDataClientFactory
|
||||
from .factories import BingxLiveExecClientFactory
|
||||
from .observer import BingxOrderUpdateObserver
|
||||
|
||||
__all__ = [
|
||||
"BingxEnvironment",
|
||||
"BingxDataClientConfig",
|
||||
"BingxExecClientConfig",
|
||||
"BingxInstrumentProviderConfig",
|
||||
"BingxLiveDataClientFactory",
|
||||
"BingxLiveExecClientFactory",
|
||||
"BingxOrderUpdateObserver",
|
||||
]
|
||||
Reference in New Issue
Block a user