from freqtrade/develop
This commit is contained in:
15
freqtrade/state.py
Executable file
15
freqtrade/state.py
Executable file
@@ -0,0 +1,15 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user