Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

beyondstorage/go-service-minio

Repository files navigation

go-service-minio

MinIO is an open source cloud-native high-performance object storage service. This project will use minio's native SDK to implement go-storage, enabling users to manipulate data on minio servers through a unified interface.

Notes

This package has been moved to go-storage.

go get go.beyondstorage.io/services/minio

Install

go get github.com/beyondstorage/go-service-minio

Usage

import (
	"log"

	_ "github.com/beyondstorage/go-service-minio"
	"github.com/beyondstorage/go-storage/v4/services"
)

func main() {
	store, err := services.NewStoragerFromString("minio://<bucket_name>/<work_dir>?credential=hmac:<access_key>:<secret_key>&endpoint=https:<host>:<port>")
	if err != nil {
		log.Fatal(err)
	}
	
	// Write data from io.Reader into hello.txt
	n, err := store.Write("hello.txt", r, length)
}