Deprecated: Please use GetReader(fileKey) instead.
(fileKey string)
| 122 | |
| 123 | // Deprecated: Please use GetReader(fileKey) instead. |
| 124 | func (s *System) GetFile(fileKey string) (*blob.Reader, error) { |
| 125 | color.Yellow("Deprecated: Please replace GetFile with GetReader.") |
| 126 | return s.GetReader(fileKey) |
| 127 | } |
| 128 | |
| 129 | // GetReuploadableFile constructs a new reuploadable File value |
| 130 | // from the associated fileKey blob.Reader. |