triangular_arbitrage_bot/executor/__init__.py

10 lines
155 B
Python

"""
Executor package.
Re-exports the Executor class used by the fused_engine process.
"""
from executor.executor import Executor
__all__ = ["Executor"]