Remote returns the remote path
()
| 124 | |
| 125 | // Remote returns the remote path |
| 126 | func (o *Object) Remote() string { |
| 127 | p := path.Join(o.Dir, o.Name) |
| 128 | return o.CacheFs.cleanRootFromPath(p) |
| 129 | } |
| 130 | |
| 131 | // abs returns the absolute path to the object |
| 132 | func (o *Object) abs() string { |
no test coverage detected