Add stable marshaller helper for bool

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
Alex Vanin 2020-08-14 15:53:57 +03:00 committed by Stanislav Bogatyrev
parent 311b76b75b
commit 89bd8f3915
4 changed files with 147 additions and 22 deletions

View file

@ -3,6 +3,7 @@ syntax = "proto3";
package test;
message Primitives {
bytes field_a = 1;
bytes field_a = 1;
string field_b = 2;
bool field_c = 200;
}