This repository has been archived on 2015-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
jsh/files.go
2014-10-14 16:33:01 -04:00

15 lines
154 B
Go

package jsh
type File struct {
Name string
Size int
Mode int
Inode uint64
}
type Permission struct {
Read bool
Write bool
Execute bool
}