mirror of
https://github.com/google/pebble.git
synced 2025-03-23 12:12:19 +00:00
9 lines
156 B
Protocol Buffer
9 lines
156 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
import 'nanopb.proto';
|
||
|
|
||
|
message MainMessage {
|
||
|
string foo = 1 [(nanopb).max_size = 3];
|
||
|
string bar = 2 [(nanopb).max_size = 8];
|
||
|
}
|
||
|
|