Skip to content

Commit 41b5b99

Browse files
committed
Change the package name
Updated the package name.
1 parent 00358b3 commit 41b5b99

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ Prerequisites:
1414
Clone `cachego` from source into `$GOPATH`:
1515

1616
```sh
17-
$ mkdir -p $GOPATH/src/github.com/fabiorphp
17+
$ mkdir -p $GOPATH/src/github.com/faabiosr
1818
$ cd $_
19-
$ git clone [email protected]:fabiorphp/cachego.git
19+
$ git clone [email protected]:faabiosr/cachego.git
2020
$ cd cachego
2121
```
2222

README.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Cachego
22

3-
[![Build Status](https://img.shields.io/travis/fabiorphp/cachego/master.svg?style=flat-square)](https://travis-ci.org/fabiorphp/cachego)
4-
[![Coverage Status](https://img.shields.io/coveralls/fabiorphp/cachego/master.svg?style=flat-square)](https://coveralls.io/github/fabiorphp/cachego?branch=master)
5-
[![GoDoc](https://img.shields.io/badge/godoc-reference-5272B4.svg?style=flat-square)](https://godoc.org/github.com/fabiorphp/cachego)
6-
[![Go Report Card](https://goreportcard.com/badge/github.com/fabiorphp/cachego?style=flat-square)](https://goreportcard.com/report/github.com/fabiorphp/cachego)
7-
[![License](https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square)](https://github.com/fabiorphp/cachego/blob/master/LICENSE)
3+
[![Build Status](https://img.shields.io/travis/faabiosr/cachego/master.svg?style=flat-square)](https://travis-ci.org/faabiosr/cachego)
4+
[![Coverage Status](https://img.shields.io/coveralls/faabiosr/cachego/master.svg?style=flat-square)](https://coveralls.io/github/faabiosr/cachego?branch=master)
5+
[![GoDoc](https://img.shields.io/badge/godoc-reference-5272B4.svg?style=flat-square)](https://godoc.org/github.com/faabiosr/cachego)
6+
[![Go Report Card](https://goreportcard.com/badge/github.com/faabiosr/cachego?style=flat-square)](https://goreportcard.com/report/github.com/faabiosr/cachego)
7+
[![License](https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square)](https://github.com/faabiosr/cachego/blob/master/LICENSE)
88

99
Simple interface for caching
1010

@@ -13,13 +13,13 @@ Simple interface for caching
1313
Cachego requires Go 1.9 or later.
1414

1515
```
16-
go get github.com/fabiorphp/cachego
16+
go get github.com/faabiosr/cachego
1717
```
1818

1919
If you want to get an specific version, please use the example below:
2020

2121
```
22-
go get gopkg.in/fabiorphp/cachego.v0
22+
go get gopkg.in/faabiosr/cachego.v0
2323
```
2424

2525
## Usage Examples
@@ -30,7 +30,7 @@ go get gopkg.in/fabiorphp/cachego.v0
3030
package main
3131

3232
import (
33-
"github.com/fabiorphp/cachego"
33+
"github.com/faabiosr/cachego"
3434
"github.com/bradfitz/gomemcache/memcache"
3535
)
3636

@@ -47,7 +47,7 @@ func init() {
4747
package main
4848

4949
import (
50-
"github.com/fabiorphp/cachego"
50+
"github.com/faabiosr/cachego"
5151
"gopkg.in/redis.v4"
5252
)
5353

@@ -68,7 +68,7 @@ func init() {
6868
package main
6969

7070
import (
71-
"github.com/fabiorphp/cachego"
71+
"github.com/faabiosr/cachego"
7272
)
7373

7474
var cache cachego.Cache
@@ -86,7 +86,7 @@ func init() {
8686
package main
8787

8888
import (
89-
"github.com/fabiorphp/cachego"
89+
"github.com/faabiosr/cachego"
9090
)
9191

9292
var cache cachego.Cache
@@ -102,7 +102,7 @@ func init() {
102102
package main
103103

104104
import (
105-
"github.com/fabiorphp/cachego"
105+
"github.com/faabiosr/cachego"
106106
"gopkg.in/mgo.v2"
107107
)
108108

@@ -142,7 +142,7 @@ func init() {
142142
package main
143143

144144
import (
145-
"github.com/fabiorphp/cachego"
145+
"github.com/faabiosr/cachego"
146146
)
147147

148148
var cache cachego.Cache
@@ -158,7 +158,7 @@ func init() {
158158
package main
159159

160160
import (
161-
"github.com/fabiorphp/cachego"
161+
"github.com/faabiosr/cachego"
162162
bolt "github.com/coreos/bbolt"
163163
)
164164

@@ -176,7 +176,7 @@ func init() {
176176
package main
177177

178178
import (
179-
"github.com/fabiorphp/cachego"
179+
"github.com/faabiosr/cachego"
180180
)
181181

182182
var cache cachego.Cache
@@ -211,7 +211,7 @@ func init() {
211211
package main
212212

213213
import (
214-
"github.com/fabiorphp/cachego"
214+
"github.com/faabiosr/cachego"
215215
"github.com/bradfitz/gomemcache/memcache"
216216
)
217217

@@ -233,7 +233,7 @@ func main() {
233233

234234
## Documentation
235235

236-
Read the full documentation at [https://godoc.org/github.com/fabiorphp/cachego](https://godoc.org/github.com/fabiorphp/cachego).
236+
Read the full documentation at [https://godoc.org/github.com/faabiosr/cachego](https://godoc.org/github.com/faabiosr/cachego).
237237

238238
## Development
239239

@@ -271,4 +271,4 @@ make test
271271

272272
## License
273273

274-
This project is released under the MIT licence. See [LICENSE](https://github.com/fabiorphp/cachego/blob/master/LICENSE) for more details.
274+
This project is released under the MIT licence. See [LICENSE](https://github.com/faabiosr/cachego/blob/master/LICENSE) for more details.

doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// The following is a simple example using memcached driver:
66
// import (
77
// "fmt"
8-
// "github.com/fabiorphp/cachego"
8+
// "github.com/faabiosr/cachego"
99
// "github.com/bradfitz/gomemcache/memcache"
1010
// )
1111
//

0 commit comments

Comments
 (0)