| 36 | } |
| 37 | |
| 38 | type entry struct { |
| 39 | name string |
| 40 | mode os.FileMode |
| 41 | size int64 |
| 42 | modTime time.Time |
| 43 | owner fs.OwnerInfo |
| 44 | device fs.DeviceInfo |
| 45 | } |
| 46 | |
| 47 | func (e *entry) Name() string { |
| 48 | return e.name |
nothing calls this directly
no outgoing calls
no test coverage detected