mirror of
https://github.com/minio/minio.git
synced 2024-12-25 06:35:56 -05:00
22 lines
274 B
Go
22 lines
274 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"time"
|
|
)
|
|
|
|
// VolInfo - volume info
|
|
type VolInfo struct {
|
|
Name string
|
|
Created time.Time
|
|
}
|
|
|
|
// FileInfo - file stat information.
|
|
type FileInfo struct {
|
|
Volume string
|
|
Name string
|
|
ModTime time.Time
|
|
Size int64
|
|
Mode os.FileMode
|
|
}
|