stable/freqtrade/state.py
2018-07-09 08:19:28 +08:00

16 lines
209 B
Python
Executable File

# pragma pylint: disable=too-few-public-methods
"""
Bot state constant
"""
import enum
class State(enum.Enum):
"""
Bot application states
"""
RUNNING = 0
STOPPED = 1
RELOAD_CONF = 2