From c90745135033a8b989b2402e82d9cbcb1e065d72 Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Mon, 4 Oct 2021 14:41:31 +0300 Subject: [PATCH] [#150] status: Define enumeration of the codes for common failures Signed-off-by: Leonard Lyubich --- status/types.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/status/types.proto b/status/types.proto index 0c302e5..a340d34 100644 --- a/status/types.proto +++ b/status/types.proto @@ -22,3 +22,7 @@ message Status { enum Success { OK = 0; } + +enum CommonFail { + INTERNAL = 0; +}