seaweedfs/weed-fs/src/pkg/storage/volume_info.go

14 lines
174 B
Go
Raw Normal View History

2012-08-24 14:24:32 +08:00
package storage
import (
)
2012-08-24 14:24:32 +08:00
type VolumeInfo struct {
2012-09-11 08:08:52 +08:00
Id VolumeId
Size int64
RepType ReplicationType
2012-10-10 11:53:31 +08:00
FileCount int
DeleteCount int
2012-11-24 09:03:27 +08:00
DeletedByteCount uint32
}