mirror of
https://github.com/google/pebble.git
synced 2025-03-20 02:51:21 +00:00
10 lines
171 B
Protocol Buffer
10 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];
|
|
}
|
|
}
|