当前位置 : 主页 > 大数据 > 区块链 >

protobuf-3 – 如何在protobuf中存储时间3

来源:互联网 收集:自由互联 发布时间:2021-06-22
我在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
我在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以获取已创建的结构定义.

网友评论