I have this struct in golang
struct File {
name string
creatation_time time.Time
}
How do I write it in protobuf3 ?
I have this struct in golang
struct File {
name string
creatation_time time.Time
}
How do I write it in protobuf3 ?
Create example.proto;
After compilation check the example.pb.go for the structure definition that has been created.