diff --git a/README.md b/README.md index ad0c343..2c98252 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,13 @@ server handling and examples of each. ## Installation ```#!bash -$ go get git.mills.io/prologic/go-gopher +$ go get code.as/writefreely/go-gopher ``` ## Usage ```#!go -import "git.mills.io/prologic/go-gopher" +import "code.as/writefreely/go-gopher" ``` ## Example @@ -28,7 +28,7 @@ package main import ( "fmt" - "git.mills.io/prologic/go-gopher" + "code.as/writefreely/go-gopher" ) func main() { @@ -46,7 +46,7 @@ package main import ( "log" - "git.mills.io/prologic/go-gopher" + "code.as/writefreely/go-gopher" ) func hello(w gopher.ResponseWriter, r *gopher.Request) { diff --git a/go.mod b/go.mod index 7f1692a..16e6558 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module git.mills.io/prologic/go-gopher +module code.as/writefreely/go-gopher require ( github.com/davecgh/go-spew v1.1.1 // indirect diff --git a/gopher_test.go b/gopher_test.go index ae60b7c..792415a 100644 --- a/gopher_test.go +++ b/gopher_test.go @@ -11,7 +11,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "git.mills.io/prologic/go-gopher" + "code.as/writefreely/go-gopher" ) var (