From 9dd2682b49730eaa5e523d49049ef31dcb61f40d Mon Sep 17 00:00:00 2001 From: sneak Date: Wed, 3 Nov 2021 04:23:09 -0700 Subject: [PATCH] mtime/ctime/atime should be Timestamp --- proto/mf.proto | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/proto/mf.proto b/proto/mf.proto index 12ca402..ba9ab5e 100644 --- a/proto/mf.proto +++ b/proto/mf.proto @@ -31,7 +31,6 @@ message MFFile { } message MFFilePath { - // required attributes: string path = 101; uint64 size = 102; @@ -41,9 +40,9 @@ message MFFilePath { // optional per-file metadata optional string mimeType = 301; - optional string mtime = 302; - optional string ctime = 303; - optional string atime = 304; + optional google.protobuf.Timestamp mtime = 302; + optional google.protobuf.Timestamp ctime = 303; + optional google.protobuf.Timestamp atime = 304; }