mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-11-25 11:39:12 +08:00
14 lines
174 B
Go
14 lines
174 B
Go
package storage
|
|
|
|
import (
|
|
)
|
|
|
|
type VolumeInfo struct {
|
|
Id VolumeId
|
|
Size int64
|
|
RepType ReplicationType
|
|
FileCount int
|
|
DeleteCount int
|
|
DeletedByteCount uint32
|
|
}
|