Fix import paths

This commit is contained in:
James Mills 2021-07-12 23:54:10 +10:00
parent 5715073cee
commit b7ebb55fee
No known key found for this signature in database
GPG Key ID: AC4C014F1440EBD6
6 changed files with 14 additions and 14 deletions

View File

@ -3,8 +3,8 @@
[![Build Status](https://cloud.drone.io/api/badges/prologic/go-gopher/status.svg)](https://cloud.drone.io/prologic/go-gopher) [![Build Status](https://cloud.drone.io/api/badges/prologic/go-gopher/status.svg)](https://cloud.drone.io/prologic/go-gopher)
[![CodeCov](https://codecov.io/gh/prologic/go-gopher/branch/master/graph/badge.svg)](https://codecov.io/gh/prologic/go-gopher) [![CodeCov](https://codecov.io/gh/prologic/go-gopher/branch/master/graph/badge.svg)](https://codecov.io/gh/prologic/go-gopher)
[![Go Report Card](https://goreportcard.com/badge/prologic/go-gopher)](https://goreportcard.com/report/prologic/go-gopher) [![Go Report Card](https://goreportcard.com/badge/prologic/go-gopher)](https://goreportcard.com/report/prologic/go-gopher)
[![GoDoc](https://godoc.org/github.com/prologic/go-gopher?status.svg)](https://godoc.org/github.com/prologic/go-gopher) [![GoDoc](https://godoc.org/git.mills.io/prologic/go-gopher?status.svg)](https://godoc.org/git.mills.io/prologic/go-gopher)
[![Sourcegraph](https://sourcegraph.com/github.com/prologic/go-gopher/-/badge.svg)](https://sourcegraph.com/github.com/prologic/go-gopher?badge) [![Sourcegraph](https://sourcegraph.com/git.mills.io/prologic/go-gopher/-/badge.svg)](https://sourcegraph.com/git.mills.io/prologic/go-gopher?badge)
This is a standards compliant Gopher library for the Go programming language This is a standards compliant Gopher library for the Go programming language
implementing the RFC 1436 specification. The library includes both client and implementing the RFC 1436 specification. The library includes both client and
@ -13,13 +13,13 @@ server handling and examples of each.
## Installation ## Installation
```#!bash ```#!bash
$ go get github.com/prologic/go-gopher $ go get git.mills.io/prologic/go-gopher
``` ```
## Usage ## Usage
```#!go ```#!go
import "github.com/prologic/go-gopher" import "git.mills.io/prologic/go-gopher"
``` ```
## Example ## Example
@ -32,7 +32,7 @@ package main
import ( import (
"fmt" "fmt"
"github.com/prologic/go-gopher" "git.mills.io/prologic/go-gopher"
) )
func main() { func main() {
@ -50,7 +50,7 @@ package main
import ( import (
"log" "log"
"github.com/prologic/go-gopher" "git.mills.io/prologic/go-gopher"
) )
func hello(w gopher.ResponseWriter, r *gopher.Request) { func hello(w gopher.ResponseWriter, r *gopher.Request) {
@ -67,11 +67,11 @@ func main() {
Related projects: Related projects:
- [gopherproxy](https://github.com/prologic/gopherproxy) - [gopherproxy](https://git.mills.io/prologic/gopherproxy)
gopherproxy is Gopher to HTTP proxy that uses go-gopher gopherproxy is Gopher to HTTP proxy that uses go-gopher
for all of its core functionality. for all of its core functionality.
- [gopherclient](https://github.com/prologic/gopherclient) - [gopherclient](https://git.mills.io/prologic/gopherclient)
gopherclient is a cross-platform QT/QML GUI Gopher Client gopherclient is a cross-platform QT/QML GUI Gopher Client
using the gopherproxy library as its backend. using the gopherproxy library as its backend.

View File

@ -6,7 +6,7 @@ import (
"io/ioutil" "io/ioutil"
"log" "log"
"github.com/prologic/go-gopher" "git.mills.io/prologic/go-gopher"
) )
var ( var (

View File

@ -5,7 +5,7 @@ import (
"log" "log"
"os" "os"
"github.com/prologic/go-gopher" "git.mills.io/prologic/go-gopher"
) )
func cwd() string { func cwd() string {

View File

@ -4,7 +4,7 @@ import (
"log" "log"
"sync" "sync"
"github.com/prologic/go-gopher" "git.mills.io/prologic/go-gopher"
) )
func index(w gopher.ResponseWriter, r *gopher.Request) { func index(w gopher.ResponseWriter, r *gopher.Request) {

View File

@ -797,7 +797,7 @@ func (s *Server) logf(format string, args ...interface{}) {
// "io" // "io"
// "log" // "log"
// //
// "github.com/prologic/go-gopher" // "git.mills.io/prologic/go-gopher"
// ) // )
// //
// // hello world, the gopher server // // hello world, the gopher server
@ -828,7 +828,7 @@ func ListenAndServe(addr string, handler Handler) error {
// import ( // import (
// "log" // "log"
// //
// "github.com/prologic/go-gopher", // "git.mills.io/prologic/go-gopher",
// ) // )
// //
// func HelloServer(w gopher.ResponseWriter, req *gopher.Request) { // func HelloServer(w gopher.ResponseWriter, req *gopher.Request) {

View File

@ -7,7 +7,7 @@ import (
"testing" "testing"
"time" "time"
"github.com/prologic/go-gopher" "git.mills.io/prologic/go-gopher"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
) )