mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-24 09:03:14 +01:00
9 lines
119 B
Protocol Buffer
9 lines
119 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option go_package = "/testprotos";
|
||
|
|
||
|
package testprotos;
|
||
|
|
||
|
message TestMessage {
|
||
|
string body = 1;
|
||
|
}
|