mirror of
https://github.com/minio/minio.git
synced 2025-01-01 01:53:22 -05:00
24 lines
350 B
Go
24 lines
350 B
Go
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")
|
|
}
|