Return a string version
()
| 61 | |
| 62 | // Return a string version |
| 63 | func (o *Object) String() string { |
| 64 | if o == nil { |
| 65 | return "<nil>" |
| 66 | } |
| 67 | return o.Remote() |
| 68 | } |
| 69 | |
| 70 | // Hash is not supported |
| 71 | func (o *Object) Hash(ctx context.Context, r hash.Type) (string, error) { |