mirror of
https://github.com/google/pebble.git
synced 2025-03-22 11:42:19 +00:00
8 lines
156 B
Protocol Buffer
8 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];
|
|
}
|
|
|