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)
[![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)
[![GoDoc](https://godoc.org/github.com/prologic/go-gopher?status.svg)](https://godoc.org/github.com/prologic/go-gopher)
[![Sourcegraph](https://sourcegraph.com/github.com/prologic/go-gopher/-/badge.svg)](https://sourcegraph.com/github.com/prologic/go-gopher?badge)
[![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/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
implementing the RFC 1436 specification. The library includes both client and
@ -13,13 +13,13 @@ server handling and examples of each.
## Installation
```#!bash
$ go get github.com/prologic/go-gopher
$ go get git.mills.io/prologic/go-gopher
```
## Usage
```#!go
import "github.com/prologic/go-gopher"
import "git.mills.io/prologic/go-gopher"
```
## Example
@ -32,7 +32,7 @@ package main
import (
"fmt"
"github.com/prologic/go-gopher"
"git.mills.io/prologic/go-gopher"
)
func main() {
@ -50,7 +50,7 @@ package main
import (
"log"
"github.com/prologic/go-gopher"
"git.mills.io/prologic/go-gopher"
)
func hello(w gopher.ResponseWriter, r *gopher.Request) {
@ -67,11 +67,11 @@ func main() {
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
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
using the gopherproxy library as its backend.

View File

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

View File

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

View File

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

View File

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

View File

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