Return a string version
()
| 1005 | |
| 1006 | // Return a string version |
| 1007 | func (o *Object) String() string { |
| 1008 | if o == nil { |
| 1009 | return "<nil>" |
| 1010 | } |
| 1011 | return o.Remote() |
| 1012 | } |
| 1013 | |
| 1014 | // Remote returns the remote path |
| 1015 | func (o *Object) Remote() string { |