Skip to content

Commit 4012712

Browse files
committed
Change path to github.com/writefreely/go-gopher
1 parent 72e36e5 commit 4012712

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ server handling and examples of each.
99
## Installation
1010

1111
```#!bash
12-
$ go get git.mills.io/prologic/go-gopher
12+
$ go get github.com/writefreely/go-gopher
1313
```
1414

1515
## Usage
1616

1717
```#!go
18-
import "git.mills.io/prologic/go-gopher"
18+
import "github.com/writefreely/go-gopher"
1919
```
2020

2121
## Example
@@ -28,7 +28,7 @@ package main
2828
import (
2929
"fmt"
3030
31-
"git.mills.io/prologic/go-gopher"
31+
"github.com/writefreely/go-gopher"
3232
)
3333
3434
func main() {
@@ -46,7 +46,7 @@ package main
4646
import (
4747
"log"
4848
49-
"git.mills.io/prologic/go-gopher"
49+
"github.com/writefreely/go-gopher"
5050
)
5151
5252
func hello(w gopher.ResponseWriter, r *gopher.Request) {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module git.mills.io/prologic/go-gopher
1+
module github.com/writefreely/go-gopher
22

33
require (
44
github.com/davecgh/go-spew v1.1.1 // indirect

gopher_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/stretchr/testify/assert"
1212
"github.com/stretchr/testify/require"
1313

14-
"git.mills.io/prologic/go-gopher"
14+
"github.com/writefreely/go-gopher"
1515
)
1616

1717
var (

0 commit comments

Comments
 (0)