Skip to content

Commit 3661e36

Browse files
krisisharshavardhana
authored andcommitted
Rename Golang references to Go and other cleanup (#589)
1 parent 3dc72bb commit 3661e36

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

README.md

+14-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Minio Golang Library for Amazon S3 Compatible Cloud Storage [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Minio/minio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2-
The Minio Golang Client SDK provides simple APIs to access any Amazon S3 compatible object storage server.
1+
# Minio Go Client SDK for Amazon S3 Compatible Cloud Storage [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Minio/minio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2+
The Minio Go Client SDK provides simple APIs to access any Amazon S3 compatible object storage.
33

44
**Supported cloud storage providers:**
55

@@ -14,9 +14,9 @@ The Minio Golang Client SDK provides simple APIs to access any Amazon S3 compati
1414
- Ceph Object Gateway
1515
- Riak CS
1616

17-
This quickstart guide will show you how to install the Minio client SDK, connect to Minio, and provide a walkthrough of a simple file uploader. For a complete list of APIs and examples, please take a look at the [Golang Client API Reference](https://docs.minio.io/docs/golang-client-api-reference).
17+
This quickstart guide will show you how to install the Minio client SDK, connect to Minio, and provide a walkthrough for a simple file uploader. For a complete list of APIs and examples, please take a look at the [Go Client API Reference](https://docs.minio.io/docs/golang-client-api-reference).
1818

19-
This document assumes that you have a working [Golang setup](https://docs.minio.io/docs/how-to-install-golang).
19+
This document assumes that you have a working [Go development environment](https://docs.minio.io/docs/how-to-install-golang).
2020

2121

2222
## Download from Github
@@ -28,8 +28,7 @@ go get -u github.com/minio/minio-go
2828
```
2929
## Initialize Minio Client
3030

31-
You need four items to connect to Minio object storage server.
32-
31+
Minio client requires the following four parameters specified to connect to an Amazon S3 compatible object storage.
3332

3433

3534
| Parameter | Description|
@@ -68,7 +67,7 @@ func main() {
6867
6968
## Quick Start Example - File Uploader
7069
71-
This example program connects to an object storage server, makes a bucket on the server and then uploads a file to the bucket.
70+
This example program connects to an object storage server, creates a bucket and uploads a file to the bucket.
7271
7372
7473
@@ -191,6 +190,13 @@ The full API Reference is available here.
191190
* [`PresignedPutObject`](https://docs.minio.io/docs/golang-client-api-reference#PresignedPutObject)
192191
* [`PresignedPostPolicy`](https://docs.minio.io/docs/golang-client-api-reference#PresignedPostPolicy)
193192
193+
### API Reference : Client custom settings
194+
* [`SetAppInfo`](http://docs.minio.io/docs/golang-client-api-reference#SetAppInfo)
195+
* [`SetCustomTransport`](http://docs.minio.io/docs/golang-client-api-reference#SetCustomTransport)
196+
* [`TraceOn`](http://docs.minio.io/docs/golang-client-api-reference#TraceOn)
197+
* [`TraceOff`](http://docs.minio.io/docs/golang-client-api-reference#TraceOff)
198+
199+
194200
## Full Examples
195201
196202
#### Full Examples : Bucket Operations
@@ -238,7 +244,7 @@ The full API Reference is available here.
238244
239245
## Explore Further
240246
* [Complete Documentation](https://docs.minio.io)
241-
* [Minio Golang Client SDK API Reference](https://docs.minio.io/docs/golang-client-api-reference)
247+
* [Minio Go Client SDK API Reference](https://docs.minio.io/docs/golang-client-api-reference)
242248
* [Go Music Player App- Full Application Example ](https://docs.minio.io/docs/go-music-player-app)
243249
244250
## Contribute

0 commit comments

Comments
 (0)