[#150] status: Define enumeration of success status codes

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2021-10-04 14:40:56 +03:00 committed by LeL
parent ba1179a22b
commit fd0366bbf5

View file

@ -18,3 +18,7 @@ message Status {
repeated Detail details = 3; repeated Detail details = 3;
} }
enum Success {
OK = 0;
}