From f55f83fb24e3888089bc1e51fba38ec38375360a Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Mon, 4 Oct 2021 14:55:23 +0300 Subject: [PATCH] [#150] status: Define enum of sequence numbers of the failure sections Signed-off-by: Leonard Lyubich --- status/types.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/status/types.proto b/status/types.proto index a340d34..c9c467d 100644 --- a/status/types.proto +++ b/status/types.proto @@ -26,3 +26,9 @@ enum Success { enum CommonFail { INTERNAL = 0; } + +enum Section { + SECTION_SUCCESS = 0; + + SECTION_FAILURE_COMMON = 1; +}