15 lines
154 B
Go
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
|
|
}
|