github.com/confluentinc/confluent-kafka-go@v1.9.2/schemaregistry/test/proto/example.proto (about)

     1  syntax = "proto3";
     2  
     3  package test;
     4  option go_package="../test";
     5  
     6  message Author {
     7    string name = 1;
     8    int32 id = 2;
     9    repeated string works = 4;
    10  }
    11  
    12  message Pizza {
    13    string size = 1;
    14    repeated string toppings = 2;
    15  }