mirror of
https://projects.torsion.org/witten/borgmatic.git
synced 2025-01-08 00:55:42 +00:00
10 lines
111 B
Python
10 lines
111 B
Python
import enum
|
|
|
|
IS_A_HOOK = False
|
|
|
|
|
|
class State(enum.Enum):
|
|
START = 1
|
|
FINISH = 2
|
|
FAIL = 3
|
|
LOG = 4
|