mirror of
https://github.com/google/pebble.git
synced 2025-03-20 19:01:21 +00:00
11 lines
171 B
Protocol Buffer
11 lines
171 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
import "nanopb.proto";
|
||
|
|
||
|
message Repro {
|
||
|
oneof value_type {
|
||
|
bool boolean_value = 1;
|
||
|
bytes bytes_value = 5 [(nanopb).type = FT_POINTER];
|
||
|
}
|
||
|
}
|