(name string)
| 292 | type osSystem struct{} |
| 293 | |
| 294 | func (*osSystem) Open(name string) (fs.File, error) { |
| 295 | return os.Open(name) //#nosec G304 |
| 296 | } |
| 297 | |
| 298 | func (*osSystem) ReadDir(name string) ([]fs.DirEntry, error) { |
| 299 | return os.ReadDir(name) //#nosec G304 |
no outgoing calls