i think this will build now
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jeffrey Paul 2022-02-02 00:26:18 -08:00
parent 9d8616866f
commit eb3b685aa3
1 changed files with 8 additions and 5 deletions

View File

@ -2,7 +2,10 @@ syntax = "proto3";
option go_package = "git.eeqj.de/sneak/mfer";
import "google/protobuf/timestamp.proto";
message Timestamp {
int64 seconds = 1;
int32 nanos = 2;
}
message MFFile {
enum Version {
@ -40,9 +43,9 @@ message MFFilePath {
// optional per-file metadata
string mimeType = 301;
google.protobuf.Timestamp mtime = 302;
google.protobuf.Timestamp ctime = 303;
google.protobuf.Timestamp atime = 304;
Timestamp mtime = 302;
Timestamp ctime = 303;
Timestamp atime = 304;
}
@ -64,6 +67,6 @@ message MFFileInner {
repeated MFFilePath files = 103;
// optional manifest attributes 2xx:
google.protobuf.Timestamp createdAt = 201;
Timestamp createdAt = 201;
}