mirror of
https://github.com/minio/minio.git
synced 2024-12-26 07:05:55 -05:00
Merge pull request #229 from fkautz/pr_out_donut_frame_is_now_its_own_package
This commit is contained in:
commit
9d30475f00
@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package v1
|
package frame_v1
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
@ -1,5 +1,3 @@
|
|||||||
// +build ignore
|
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
@ -8,7 +6,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
|
||||||
"github.com/minio-io/minio/pkg/storage/donut/v1"
|
"github.com/minio-io/minio/pkg/storage/donut/frame/frame_v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
@ -22,7 +20,7 @@ func main() {
|
|||||||
|
|
||||||
dataBuffer := bytes.NewBuffer(data)
|
dataBuffer := bytes.NewBuffer(data)
|
||||||
|
|
||||||
err = v1.Write(file, dataBuffer, uint64(dataBuffer.Len()))
|
err = frame_v1.WriteFrame(file, dataBuffer, uint64(dataBuffer.Len()))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
@ -14,7 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package v1
|
package frame_v1
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
Loading…
Reference in New Issue
Block a user