Skip to content

minhjh/go-service-s3

Repository files navigation

Build Status Integration Tests License

go-services-s3

AWS S3 service support for go-storage.

Install

go get github.com/minhjh/go-service-s3/v2

Usage

import (
	"log"

	_ "github.com/minhjh/go-service-s3/v2"
	"github.com/minhjh/go-storage/v4/services"
)

func main() {
	store, err := services.NewStoragerFromString("s3://bucket_name/path/to/workdir")
	if err != nil {
		log.Fatal(err)
	}

	// Write data from io.Reader into hello.txt
	n, err := store.Write("hello.txt", r, length)
}

Compatible Services

We can use go-service-s3 for the following services:

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published