From 8c12c6939aab9106db14ec2d11d983bc5b29fb2c Mon Sep 17 00:00:00 2001 From: Niall Sheridan Date: Sun, 7 Jul 2019 21:33:44 +0100 Subject: Switch to modules --- vendor/github.com/nsheridan/wkfs/s3/README.md | 41 --------------------------- 1 file changed, 41 deletions(-) delete mode 100644 vendor/github.com/nsheridan/wkfs/s3/README.md (limited to 'vendor/github.com/nsheridan/wkfs/s3/README.md') diff --git a/vendor/github.com/nsheridan/wkfs/s3/README.md b/vendor/github.com/nsheridan/wkfs/s3/README.md deleted file mode 100644 index 177f738..0000000 --- a/vendor/github.com/nsheridan/wkfs/s3/README.md +++ /dev/null @@ -1,41 +0,0 @@ -## S3 plugin for WKFS - - - -Package `s3` registers an AWS S3 filesystem at the well-known `/s3/` filesystem path. - -Sample usage: - -```go -package main - -import ( - "fmt" - "io" - "log" - - "github.com/nsheridan/wkfs/s3" - "go4.org/wkfs" -) - -func main() { - opts := &s3.Options{ - Region: "us-east-1" - AccessKey: "abcdef" - SecretKey: "secret" - } - s3.Register(opts) - f, err := wkfs.Create("/s3/some-bucket/hello.txt") - if err != nil { - log.Fatal(err) - } - _, err := io.WriteString(f, "hello, world") - if err != nil { - log.Fatal(err) - } -} -``` - - - -`Options` are completely optional as the AWS SDK will attempt to obtain credentials from a number of locations - see [the documentation for details](http://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html) - e.g. if you're using environment variables you can register the filesystem with `s3.Register(nil)`. -- cgit v1.2.3