https://github.com/golang/go/issues/47803
| 328 | |
| 329 | // https://github.com/golang/go/issues/47803 |
| 330 | type osFS struct{} |
| 331 | |
| 332 | func (osFS) Open(name string) (fs.File, error) { return os.Open(name) } |
| 333 | func (osFS) ReadDir(name string) ([]fs.DirEntry, error) { return os.ReadDir(name) } |
nothing calls this directly
no outgoing calls
no test coverage detected