(path string, data []byte)
| 440 | type fileSystem interface { |
| 441 | ReadFile(path string) ([]byte, error) |
| 442 | WriteFile(path string, data []byte) error |
| 443 | ReadDir(path string) ([]os.DirEntry, error) |
| 444 | Open(path string) (fs.File, error) |
| 445 | } |
no outgoing calls