Change path to code.as/writefreely/go-gopher

This commit is contained in:
Matt Baer 2022-04-29 13:08:30 -04:00
parent 72e36e5710
commit 8429778966
3 changed files with 6 additions and 6 deletions

View File

@ -9,13 +9,13 @@ server handling and examples of each.
## Installation ## Installation
```#!bash ```#!bash
$ go get git.mills.io/prologic/go-gopher $ go get code.as/writefreely/go-gopher
``` ```
## Usage ## Usage
```#!go ```#!go
import "git.mills.io/prologic/go-gopher" import "code.as/writefreely/go-gopher"
``` ```
## Example ## Example
@ -28,7 +28,7 @@ package main
import ( import (
"fmt" "fmt"
"git.mills.io/prologic/go-gopher" "code.as/writefreely/go-gopher"
) )
func main() { func main() {
@ -46,7 +46,7 @@ package main
import ( import (
"log" "log"
"git.mills.io/prologic/go-gopher" "code.as/writefreely/go-gopher"
) )
func hello(w gopher.ResponseWriter, r *gopher.Request) { func hello(w gopher.ResponseWriter, r *gopher.Request) {

2
go.mod
View File

@ -1,4 +1,4 @@
module git.mills.io/prologic/go-gopher module code.as/writefreely/go-gopher
require ( require (
github.com/davecgh/go-spew v1.1.1 // indirect github.com/davecgh/go-spew v1.1.1 // indirect

View File

@ -11,7 +11,7 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"git.mills.io/prologic/go-gopher" "code.as/writefreely/go-gopher"
) )
var ( var (