(ctx context.Context, engine storage.Engine, path *storage.URI)
| 69 | } |
| 70 | |
| 71 | func (o *Object) NewVectorWriter(ctx context.Context, engine storage.Engine, path *storage.URI) (*VectorWriter, error) { |
| 72 | return NewVectorWriter(ctx, engine, path, o.ID) |
| 73 | } |
| 74 | |
| 75 | func NewVectorWriter(ctx context.Context, engine storage.Engine, path *storage.URI, id ksuid.KSUID) (*VectorWriter, error) { |
| 76 | put, err := engine.Put(ctx, VectorURI(path, id)) |
no test coverage detected