ref: ab174c473618dd3743881cf44e02c2db4d1ecd5f
dir: /object/store/writer.go/
package objectstore
// Writer represents a store that could perform both pack ingestions
// and individual object writes.
type Writer interface {
PackWriter
ObjectWriter
}