mirror of
https://github.com/google/pebble.git
synced 2025-11-16 20:40:55 -05: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];
|
|
}
|
|
|