Skip to content

Commit

Permalink
Change all paths from minio-io to minio
Browse files Browse the repository at this point in the history
  • Loading branch information
harshavardhana committed May 11, 2015
1 parent 7d64163 commit 47b6e39
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### Setup your objectstorage-go Github Repository
Fork [objectstorage-go upstream](https://github.com/minio-io/objectstorage-go/fork) source repository to your own personal repository.
Fork [objectstorage-go upstream](https://github.com/minio/objectstorage-go/fork) source repository to your own personal repository.
```sh
$ git clone https://github.com/$USER_ID/objectstorage-go
$ cd objectstorage-go
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
## Install

```go
# go get github.com/minio-io/objectstorage-go
# go get github.com/minio/objectstorage-go
```

## Documentation

[Objectstorage library in Go](http://godoc.org/github.com/minio-io/objectstorage-go)
[Objectstorage library in Go](http://godoc.org/github.com/minio/objectstorage-go)

## Join Community
* Community hangout on Gitter [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Minio-io/minio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Expand Down
2 changes: 1 addition & 1 deletion examples/play/get_object.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"log"
"os"

"github.com/minio-io/objectstorage-go"
"github.com/minio/objectstorage-go"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/play/list_buckets.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ package main
import (
"log"

"github.com/minio-io/objectstorage-go"
"github.com/minio/objectstorage-go"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/play/list_objects.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ package main
import (
"log"

"github.com/minio-io/objectstorage-go"
"github.com/minio/objectstorage-go"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/play/put_object.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"log"
"os"

"github.com/minio-io/objectstorage-go"
"github.com/minio/objectstorage-go"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/s3/get_object.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"log"
"os"

"github.com/minio-io/objectstorage-go"
"github.com/minio/objectstorage-go"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/s3/list_buckets.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ package main
import (
"log"

"github.com/minio-io/objectstorage-go"
"github.com/minio/objectstorage-go"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/s3/list_objects.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ package main
import (
"log"

"github.com/minio-io/objectstorage-go"
"github.com/minio/objectstorage-go"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/s3/put_object.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"log"
"os"

"github.com/minio-io/objectstorage-go"
"github.com/minio/objectstorage-go"
)

func main() {
Expand Down

0 comments on commit 47b6e39

Please sign in to comment.