readObjectInfo reads the definition for an object
(ctx context.Context)
| 1279 | |
| 1280 | // readObjectInfo reads the definition for an object |
| 1281 | func (o *Object) readObjectInfo(ctx context.Context) (object *storage.Object, err error) { |
| 1282 | bucket, bucketPath := o.split() |
| 1283 | return o.fs.readObjectInfo(ctx, bucket, bucketPath) |
| 1284 | } |
| 1285 | |
| 1286 | // readObjectInfo reads the definition for an object |
| 1287 | func (f *Fs) readObjectInfo(ctx context.Context, bucket, bucketPath string) (object *storage.Object, err error) { |
no test coverage detected