crunch/examples/basic-setup/schemas/crunch/my_event.proto
kjuulh c32aab5630
feat: generate with serializers
Signed-off-by: kjuulh <contact@kjuulh.io>
2023-09-24 21:09:40 +02:00

11 lines
176 B
Protocol Buffer

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