1619f58d78
This is a tiny program that does nothing but exists to demonstrate pkgs.buildGo by building a program that depends on a local library as well as a protobuf definition.
9 lines
166 B
Protocol Buffer
9 lines
166 B
Protocol Buffer
syntax = "proto3";
|
|
package someproto;
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
message Person {
|
|
string name = 1;
|
|
google.protobuf.Timestamp last_updated = 2;
|
|
}
|