Skip to content

Commit ad0a3d6

Browse files
authored
Update README.md
1 parent c7f1892 commit ad0a3d6

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

README.md

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -6,34 +6,34 @@
66
<strong>ThinkGo is a lightweight MVC framework written in Go (Golang).</strong>
77
</p>
88
<p align="center">
9-
<a href="https://www.travis-ci.org/thinkoner/thinkgo">
10-
<img src="https://www.travis-ci.org/thinkoner/thinkgo.svg?branch=master" alt="Build Status">
9+
<a href="https://www.travis-ci.org/forgoer/thinkgo">
10+
<img src="https://www.travis-ci.org/forgoer/thinkgo.svg?branch=master" alt="Build Status">
1111
</a>
12-
<a href="https://coveralls.io/github/thinkoner/thinkgo">
13-
<img src="https://coveralls.io/repos/github/thinkoner/thinkgo/badge.svg" alt="Coverage Status">
12+
<a href="https://coveralls.io/github/forgoer/thinkgo">
13+
<img src="https://coveralls.io/repos/github/forgoer/thinkgo/badge.svg" alt="Coverage Status">
1414
</a>
1515
</p>
1616
<p align="center">
17-
<a href="https://goreportcard.com/report/github.com/thinkoner/thinkgo">
18-
<img src="https://goreportcard.com/badge/github.com/thinkoner/thinkgo" alt="Go Report Card">
17+
<a href="https://goreportcard.com/report/github.com/forgoer/thinkgo">
18+
<img src="https://goreportcard.com/badge/github.com/forgoer/thinkgo" alt="Go Report Card">
1919
</a>
20-
<a href="https://codeclimate.com/github/thinkoner/thinkgo/maintainability">
20+
<a href="https://codeclimate.com/github/forgoer/thinkgo/maintainability">
2121
<img src="https://api.codeclimate.com/v1/badges/c315fda3b07b5aef3529/maintainability" />
2222
</a>
23-
<a href="https://godoc.org/github.com/thinkoner/thinkgo">
24-
<img src="https://godoc.org/github.com/thinkoner/thinkgo?status.svg" alt="GoDoc">
23+
<a href="https://godoc.org/github.com/forgoer/thinkgo">
24+
<img src="https://godoc.org/github.com/forgoer/thinkgo?status.svg" alt="GoDoc">
2525
</a>
26-
<a href="https://www.codetriage.com/thinkoner/thinkgo">
27-
<img src="https://www.codetriage.com/thinkoner/thinkgo/badges/users.svg" alt="Open Source Helpers">
26+
<a href="https://www.codetriage.com/forgoer/thinkgo">
27+
<img src="https://www.codetriage.com/forgoer/thinkgo/badges/users.svg" alt="Open Source Helpers">
2828
</a>
2929
<a href="https://gitter.im/think-go/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge">
3030
<img src="https://badges.gitter.im/think-go/community.svg" alt="Join the chat">
3131
</a>
32-
<a href="https://github.com/thinkoner/thinkgo/releases">
33-
<img src="https://img.shields.io/github/release/thinkoner/thinkgo.svg" alt="Latest Stable Version">
32+
<a href="https://github.com/forgoer/thinkgo/releases">
33+
<img src="https://img.shields.io/github/release/forgoer/thinkgo.svg" alt="Latest Stable Version">
3434
</a>
3535
<a href="LICENSE">
36-
<img src="https://img.shields.io/github/license/thinkoner/thinkgo.svg" alt="License">
36+
<img src="https://img.shields.io/github/license/forgoer/thinkgo.svg" alt="License">
3737
</a>
3838
</p>
3939

@@ -43,7 +43,7 @@
4343
The only requirement is the [Go Programming Language](https://golang.org/dl/)
4444

4545
```
46-
go get -u github.com/thinkoner/thinkgo
46+
go get -u github.com/forgoer/thinkgo
4747
```
4848

4949
## Quick start
@@ -54,8 +54,8 @@ package main
5454
import (
5555
"fmt"
5656

57-
"github.com/thinkoner/thinkgo"
58-
"github.com/thinkoner/thinkgo/think"
57+
"github.com/forgoer/thinkgo"
58+
"github.com/forgoer/thinkgo/think"
5959
)
6060

6161
func main() {
@@ -248,8 +248,8 @@ Below is an example of a basic controller class.
248248
package controller
249249

250250
import (
251-
"github.com/thinkoner/thinkgo"
252-
"github.com/thinkoner/thinkgo/context"
251+
"github.com/forgoer/thinkgo"
252+
"github.com/forgoer/thinkgo/context"
253253
)
254254

255255
func Index(req *context.Request) *context.Response {
@@ -426,7 +426,7 @@ type Handler interface {
426426
Once your driver has been implemented, you are ready to register it:
427427

428428
```go
429-
import "github.com/thinkoner/thinkgo/session"
429+
import "github.com/forgoer/thinkgo/session"
430430

431431
session.Extend("my_session", MySessionHandler)
432432
```
@@ -438,7 +438,7 @@ The logger provides the eight logging levels defined in [RFC 5424]( https://tool
438438
#### Basic Usage
439439

440440
```go
441-
import "github.com/thinkoner/thinkgo/log"
441+
import "github.com/forgoer/thinkgo/log"
442442

443443
log.Debug("log with Debug")
444444
log.Info("log with Info")
@@ -458,9 +458,9 @@ For example, if you wish to use `daily` log files, you can do this:
458458

459459
```go
460460
import (
461-
"github.com/thinkoner/thinkgo/log"
462-
"github.com/thinkoner/thinkgo/log/handler"
463-
"github.com/thinkoner/thinkgo/log/record"
461+
"github.com/forgoer/thinkgo/log"
462+
"github.com/forgoer/thinkgo/log/handler"
463+
"github.com/forgoer/thinkgo/log/record"
464464
)
465465

466466
fh := handler.NewFileHandler("path/to/thinkgo.log", record.INFO)
@@ -476,7 +476,7 @@ ThinkGo Cache Currently supports redis, memory, and can customize the store adap
476476

477477
```go
478478
import (
479-
"github.com/thinkoner/thinkgo/cache"
479+
"github.com/forgoer/thinkgo/cache"
480480
"time"
481481
)
482482

@@ -506,11 +506,11 @@ cache.Remember("foo", &a, 1*time.Minute, func() interface{} {
506506
})
507507
```
508508

509-
refer to [ThinkGo Cache]( https://github.com/thinkoner/thinkgo/tree/master/cache )
509+
refer to [ThinkGo Cache]( https://github.com/forgoer/thinkgo/tree/master/cache )
510510

511511
## ORM
512512

513-
refer to [ThinkORM]( https://github.com/thinkoner/thinkorm )
513+
refer to [ThinkORM]( https://github.com/forgoer/thinkorm )
514514

515515
## License
516516

@@ -519,5 +519,5 @@ This project is licensed under the [Apache 2.0 license](LICENSE).
519519
## Contact
520520

521521
If you have any issues or feature requests, please contact us. PR is welcomed.
522-
- https://github.com/thinkoner/thinkgo/issues
522+
- https://github.com/forgoer/thinkgo/issues
523523
- techqiang@gmail.com

0 commit comments

Comments
 (0)