mirror of
https://github.com/google/pebble.git
synced 2025-03-21 03:11:21 +00:00
10 lines
228 B
Protocol Buffer
10 lines
228 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
import "nanopb.proto";
|
|
|
|
message BodyMessage {
|
|
oneof body_type {
|
|
bytes device_data_crypted = 1 [(nanopb).max_size = 252];
|
|
bytes device_config_crypted = 2 [(nanopb).max_size = 252];
|
|
}
|
|
}
|