freqtrade_origin/freqtrade/system/__init__.py

8 lines
209 B
Python
Raw Normal View History

2024-10-04 03:05:49 +00:00
"""system specific and performance tuning"""
2024-10-05 09:30:17 +00:00
from freqtrade.system.asyncio_config import asyncio_setup
from freqtrade.system.gc_setup import gc_set_threshold
__all__ = ["asyncio_setup", "gc_set_threshold"]