9 lines
292 B
Python
9 lines
292 B
Python
"""system specific and performance tuning"""
|
|
|
|
from freqtrade.system.asyncio_config import asyncio_setup
|
|
from freqtrade.system.gc_setup import gc_set_threshold
|
|
from freqtrade.system.version_info import print_version_info
|
|
|
|
|
|
__all__ = ["asyncio_setup", "gc_set_threshold", "print_version_info"]
|