mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-07 19:30:22 -05:00
14 lines
150 B
Go
14 lines
150 B
Go
package types
|
|
|
|
import "io"
|
|
|
|
type Blob interface {
|
|
Value
|
|
Len() uint64
|
|
Read() io.Reader
|
|
}
|
|
|
|
func NewBlob(data []byte) Blob {
|
|
return flatBlob{data}
|
|
}
|