aboutsummaryrefslogtreecommitdiff
path: root/object/store/writer.go
blob: 9fa05abacd3a3bcb63f7723b172fce1b0bb668d8 (about) (plain) (blame)
1
2
3
4
5
6
7
8
package objectstore

// Writer represents a store that could perform both pack ingestions
// and individual object writes.
type Writer interface {
	PackWriter
	ObjectWriter
}