| 26 | ) |
| 27 | |
| 28 | type BlobSniffer struct { |
| 29 | br blob.Ref |
| 30 | |
| 31 | contents []byte |
| 32 | written int64 |
| 33 | meta *schema.Blob // or nil |
| 34 | mimeType string |
| 35 | camliType schema.CamliType |
| 36 | } |
| 37 | |
| 38 | func NewBlobSniffer(ref blob.Ref) *BlobSniffer { |
| 39 | if !ref.Valid() { |
nothing calls this directly
no outgoing calls
no test coverage detected