github.com/0xKiwi/rules_go@v0.24.3/tests/legacy/proto_ignore_go_package_option/a.proto (about)

     1  syntax = "proto3";
     2  
     3  // This is a fake go_package that would be ignored by specifying
     4  // ignore_go_package_option = 1.
     5  option go_package = "foo.com/bar/bla;boo";
     6  
     7  // Importing google proto is not affected by ignore_go_package_option.
     8  import "google/protobuf/struct.proto";
     9  
    10  package foo;
    11  
    12  message Foo {
    13    int32 a = 1;
    14    google.protobuf.Struct s = 2;
    15  }