| 169 | } |
| 170 | |
| 171 | type webdavFS struct { |
| 172 | dir fs.Directory |
| 173 | } |
| 174 | |
| 175 | func (w *webdavFS) Mkdir(_ context.Context, path string, _ os.FileMode) error { |
| 176 | return errors.Errorf("can't create %q: read-only filesystem", path) |
nothing calls this directly
no outgoing calls
no test coverage detected