Fix GetCatalog

This commit is contained in:
Ivan Vazhenin
2023-03-26 15:29:17 +03:00
parent 65c0b561a7
commit c2383140b6
12 changed files with 109 additions and 34 deletions
+10
View File
@@ -0,0 +1,10 @@
from enum import Enum
class ReplicationPackageStatusEnum(Enum):
CANCELLED = -4
TIMEDOUT = -3
ERROR = -2
SENT_REQUEST_TO_CHILD = 1
SENT_PACKAGE_TO_CHILD = 2
COMPLETED = 3