Adding etag to headers

This commit is contained in:
Frederick F. Kautz IV
2015-01-21 15:02:08 -08:00
parent e410337d26
commit 9ca1e37235
3 changed files with 12 additions and 0 deletions

View File

@@ -150,3 +150,9 @@ func isValidBucket(bucket string) bool {
}
return valid
}
func (storage *Storage) GetObjectMetadata(bucket, key string) mstorage.ObjectMetadata {
objectKey := bucket + ":" + key
return storage.objectdata[objectKey].metadata
}