8ce889ed1b
* WIP ObjectStore * Remove methods for extended attributes * List returns metadata too * No real need to prepend "object" in path * Serialize metadata * List retuns []ListItem instead of []Path
12 lines
264 B
Protocol Buffer
12 lines
264 B
Protocol Buffer
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
syntax = "proto3";
|
|
|
|
package meta;
|
|
|
|
// Serializable is the metadata that will be stored serialized
|
|
message Serializable {
|
|
string ContentType = 1;
|
|
map<string, string> UserDefined= 2;
|
|
} |