Skip to content

beyondstorage/go-service-qingstor

Repository files navigation

go-services-qingstor

QingStor Object Storage service support for go-storage.

Notes

This package has been moved to go-storage.

go get go.beyondstorage.io/services/qingstor/v4

Install

go get github.com/beyondstorage/go-service-qingstor/v3

Usage

import (
	"log"

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

func main() {
	store, err := services.NewStoragerFromString("qingstor://bucket_name/path/to/workdir?credential=hmac:access_key_id:secret_access_key&endpoint=https:qingstor.com")
	if err != nil {
		log.Fatal(err)
	}
	
	// Write data from io.Reader into hello.txt
	n, err := store.Write("hello.txt", r, length)
}