gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 20:32:43 24 4
gpt4 key购买 nike

我在 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com