SetModTime sets the metadata on the object to set the modification date
(ctx context.Context, t time.Time)
| 60 | |
| 61 | // SetModTime sets the metadata on the object to set the modification date |
| 62 | func (o Object) SetModTime(ctx context.Context, t time.Time) error { |
| 63 | return errNotImpl |
| 64 | } |
| 65 | |
| 66 | // Open opens the file for read. Call Close() on the returned io.ReadCloser |
| 67 | func (o Object) Open(ctx context.Context, options ...fs.OpenOption) (io.ReadCloser, error) { |