From fd0366bbf51af045ebd70975bd6ce272b9a5d9f4 Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Mon, 4 Oct 2021 14:40:56 +0300 Subject: [PATCH] [#150] status: Define enumeration of success status codes 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 f8b6f8d..0c302e5 100644 --- a/status/types.proto +++ b/status/types.proto @@ -18,3 +18,7 @@ message Status { repeated Detail details = 3; } + +enum Success { + OK = 0; +}