Merge pull request #230 from fkautz/pr_out_adding_data_go_does_nothing_for_now

This commit is contained in:
Frederick F. Kautz IV 2015-03-01 00:28:15 -08:00
commit 91c48e8d73

View 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")
}