(ctx any, path string)
| 27 | } |
| 28 | |
| 29 | func (d Drive) Get(ctx any, path string) Entry { |
| 30 | vm := GetVM(ctx) |
| 31 | entry, e := d.d.Get(GetContext(ctx), path) |
| 32 | if e != nil { |
| 33 | throwForVM(vm, e) |
| 34 | } |
| 35 | return NewEntry(entry) |
| 36 | } |
| 37 | |
| 38 | func (d Drive) Save(ctx any, path string, size int64, override bool, reader any) Entry { |
| 39 | vm := GetVM(ctx) |
nothing calls this directly
no test coverage detected