crunch/examples/basic-setup/schemas/crunch/my_event.proto

11 lines
176 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
import "includes/my_include.proto";
package basic.my_event;
message MyEvent {
string name = 1;
basic.includes.my_include.MyInclude include = 2;
}