String returns a human friendly name for this object
()
| 116 | |
| 117 | // String returns a human friendly name for this object |
| 118 | func (o *Object) String() string { |
| 119 | if o == nil { |
| 120 | return "<nil>" |
| 121 | } |
| 122 | return o.Remote() |
| 123 | } |
| 124 | |
| 125 | // Remote returns the remote path |
| 126 | func (o *Object) Remote() string { |