ModTime returns the modification date of the file It should return a best guess if one isn't available
(ctx context.Context)
| 47 | // ModTime returns the modification date of the file |
| 48 | // It should return a best guess if one isn't available |
| 49 | func (o Object) ModTime(ctx context.Context) (t time.Time) { |
| 50 | return t |
| 51 | } |
| 52 | |
| 53 | // Size returns the size of the file |
| 54 | func (o Object) Size() int64 { return 0 } |