minio/storage-datatypes.go

22 lines
274 B
Go
Raw Normal View History

2016-04-08 04:01:15 +02:00
package main
import (
"os"
"time"
)
// VolInfo - volume info
type VolInfo struct {
Name string
Created time.Time
}
2016-04-08 04:01:15 +02:00
// FileInfo - file stat information.
type FileInfo struct {
Volume string
Name string
ModTime time.Time
Size int64
Mode os.FileMode
2016-04-08 04:01:15 +02:00
}