github.com/psrajat/prototool@v1.3.0/internal/cmd/testdata/compile/extra_import/extra_import.proto (about)

     1  syntax = "proto3";
     2  
     3  package foo;
     4  
     5  import "google/protobuf/timestamp.proto";
     6  import "dep.proto";
     7  
     8  message Bar {
     9    int64 hello = 1;
    10    google.protobuf.Timestamp timestamp = 2;
    11  }