(name string)
| 45 | type errorFS struct{} |
| 46 | |
| 47 | func (e errorFS) Open(name string) (fs.File, error) { |
| 48 | return nil, fs.ErrNotExist |
| 49 | } |
| 50 | |
| 51 | func (e errorFS) ReadDir(name string) ([]fs.DirEntry, error) { |
| 52 | return nil, fs.ErrPermission |
no outgoing calls
no test coverage detected