ModTime returns the time the blob was last modified.
()
| 136 | |
| 137 | // ModTime returns the time the blob was last modified. |
| 138 | func (r *Reader) ModTime() time.Time { |
| 139 | return r.r.Attributes().ModTime |
| 140 | } |
| 141 | |
| 142 | // Size returns the size of the blob content in bytes. |
| 143 | func (r *Reader) Size() int64 { |
no test coverage detected