blob: adeb0ad2c2f8303838470303474e952fb4fc06da [file] [log] [blame]
Jiri Simsa5293dcb2014-05-10 09:56:38 -07001package inspector
2
3type Details struct {
4 Name string
5 Size int64
6 Mode uint32
7 // TODO: add native time format to the idl+vom
8 // Seconds since the start of the Unix epoch
9 ModUnixSecs int64
10 // Nanoseconds in the current second
11 ModNano int32
12 IsDir bool
13}
14
15type Inspector interface {
16 Ls(Glob string) stream<_, string> error
17 LsDetails(Glob string) stream<_, Details> error
18}