i think this will build now
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
9d8616866f
commit
eb3b685aa3
13
src/mf.proto
13
src/mf.proto
@ -2,7 +2,10 @@ syntax = "proto3";
|
|||||||
|
|
||||||
option go_package = "git.eeqj.de/sneak/mfer";
|
option go_package = "git.eeqj.de/sneak/mfer";
|
||||||
|
|
||||||
import "google/protobuf/timestamp.proto";
|
message Timestamp {
|
||||||
|
int64 seconds = 1;
|
||||||
|
int32 nanos = 2;
|
||||||
|
}
|
||||||
|
|
||||||
message MFFile {
|
message MFFile {
|
||||||
enum Version {
|
enum Version {
|
||||||
@ -40,9 +43,9 @@ message MFFilePath {
|
|||||||
|
|
||||||
// optional per-file metadata
|
// optional per-file metadata
|
||||||
string mimeType = 301;
|
string mimeType = 301;
|
||||||
google.protobuf.Timestamp mtime = 302;
|
Timestamp mtime = 302;
|
||||||
google.protobuf.Timestamp ctime = 303;
|
Timestamp ctime = 303;
|
||||||
google.protobuf.Timestamp atime = 304;
|
Timestamp atime = 304;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -64,6 +67,6 @@ message MFFileInner {
|
|||||||
repeated MFFilePath files = 103;
|
repeated MFFilePath files = 103;
|
||||||
|
|
||||||
// optional manifest attributes 2xx:
|
// optional manifest attributes 2xx:
|
||||||
google.protobuf.Timestamp createdAt = 201;
|
Timestamp createdAt = 201;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user