mirror of
https://github.com/minio/minio.git
synced 2025-01-13 07:53:21 -05:00
Adding data.go, does nothing for now.
This commit is contained in:
parent
9d30475f00
commit
2916b1278e
23
pkg/storage/donut/data/data_v1/data.go
Normal file
23
pkg/storage/donut/data/data_v1/data.go
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
package data_v1
|
||||||
|
|
||||||
|
import "errors"
|
||||||
|
|
||||||
|
type DataHeader struct {
|
||||||
|
Key string
|
||||||
|
Part int
|
||||||
|
ContentType string
|
||||||
|
Length uint64
|
||||||
|
Md5sum []byte
|
||||||
|
EncoderParams EncoderParams
|
||||||
|
}
|
||||||
|
|
||||||
|
type EncoderParams struct {
|
||||||
|
Length int
|
||||||
|
K int
|
||||||
|
M int
|
||||||
|
Technique int
|
||||||
|
}
|
||||||
|
|
||||||
|
func Write() error {
|
||||||
|
return errors.New("Not Implemented")
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user