mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
16 lines
209 B
Python
16 lines
209 B
Python
# 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
|