(ctx any, path string)
| 81 | } |
| 82 | |
| 83 | func (d Drive) Delete(ctx any, path string) { |
| 84 | vm := GetVM(ctx) |
| 85 | if e := d.d.Delete(GetTaskCtx(ctx), path); e != nil { |
| 86 | throwForVM(vm, e) |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | type Entry struct { |
| 91 | e types.IEntry |
nothing calls this directly
no test coverage detected