(ctx context.Context, file model.Obj, args model.LinkArgs)
| 57 | } |
| 58 | |
| 59 | func (d *Virtual) Link(ctx context.Context, file model.Obj, args model.LinkArgs) (*model.Link, error) { |
| 60 | return &model.Link{ |
| 61 | RangeReader: stream.GetRangeReaderFromMFile(file.GetSize(), DummyMFile{}), |
| 62 | }, nil |
| 63 | } |
| 64 | |
| 65 | func (d *Virtual) MakeDir(ctx context.Context, parentDir model.Obj, dirName string) (model.Obj, error) { |
| 66 | dir := &model.Object{ |
nothing calls this directly
no test coverage detected