(path string, data []byte)
| 998 | type fileSystem interface { |
| 999 | ReadFile(path string) ([]byte, error) |
| 1000 | WriteFile(path string, data []byte) error |
| 1001 | ReadDir(path string) ([]os.DirEntry, error) |
| 1002 | Open(path string) (fs.File, error) |
| 1003 | } |
no outgoing calls