storj/pkg/storage/list.go
Kaloyan Raev 445044b856 Adjust Segment Store to the updated interface (#160)
* Adjust Segment Store to the updated interface

* Move /pkg/storage/segment to /pkg/storage/segments

* Fix overlay client tests

* Revert changes in NewOverlayClient return value

* Rename `rem` to `seg`

* Implement Meta()
2018-07-23 14:05:02 -06:00

15 lines
232 B
Go

// Copyright (C) 2018 Storj Labs, Inc.
// See LICENSE for copying information.
package storage
import (
"storj.io/storj/pkg/paths"
)
// ListItem is a single item in a listing
type ListItem struct {
Path paths.Path
Meta Meta
}