我在golang中有这个结构

struct File {
  name string
  creatation_time time.Time
}

我该如何在protobuf3中编写它?

最佳答案

创建example.proto;

syntax = "proto3";

import google_protobuf "github.com/golang/protobuf/ptypes/timestamp"

message File {
    string name = 1;
    google.protobuf.Timestamp creatation_time = 2;
}

编译后,请检查example.pb.go以获取已创建的结构定义。

关于protobuf-3 - 如何在protobuf 3中存储时间,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42385281/

10-16 10:35