9 lines
160 B
Python
9 lines
160 B
Python
from enum import Enum
|
|
|
|
MONITOR_HOOK_NAMES = ('healthchecks', 'cronitor', 'cronhub', 'pagerduty')
|
|
|
|
|
|
class State(Enum):
|
|
START = 1
|
|
FINISH = 2
|
|
FAIL = 3
|