9 lines
190 B
Go
9 lines
190 B
Go
package common
|
|
|
|
type JSONBlobReadResult struct {
|
|
Data interface{} `json:"data"`
|
|
RealOffset int64 `json:realOffset`
|
|
BytesRead int64 `json:"bytesRead"`
|
|
BlobSize int64 `json:"blobSize"`
|
|
}
|