mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
8 lines
153 B
Python
8 lines
153 B
Python
"""
|
|
Module to handle data operations for freqtrade bot
|
|
"""
|
|
# limit what's imported when using `from freqtrad.data import *``
|
|
__all__ = [
|
|
'convert'
|
|
]
|