blob: f09a2cdf03b426a8e8ac390358b2722e0e250655 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package main
import (
"time"
)
type File struct {
name string
read bool // true if file has been read
mtime time.Time // of file when last read/written
sha256 string // of file when last read/written
}
|