abs returns the absolute path to the object
()
| 130 | |
| 131 | // abs returns the absolute path to the object |
| 132 | func (o *Object) abs() string { |
| 133 | return path.Join(o.Dir, o.Name) |
| 134 | } |
| 135 | |
| 136 | // ModTime returns the cached ModTime |
| 137 | func (o *Object) ModTime(ctx context.Context) time.Time { |
no test coverage detected