robotfs/pb/metadata.proto
2025-05-12 20:23:33 +08:00

19 lines
366 B
Protocol Buffer

syntax = "proto3";
package robotfs;
option go_package = "robotfs/pb";
message FileEntry {
string full_path = 1;
bool is_dir = 2;
uint64 size = 3;
int64 create_time = 4;
string s3_key = 5;
string content_type = 6;
string etag = 7;
string version_id = 8;
int64 last_modification_time = 9;
map<string, bytes> extended = 10;
}