diff --git a/.circleci/config.yml b/.circleci/config.yml index e156fe4..1158fe6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ jobs: build: docker: - image: circleci/golang:1.12 - working_directory: /go/src/github.com/sparrc/go-ping + working_directory: /go/src/github.com/go-ping/ping steps: - checkout - run: diff --git a/README.md b/README.md index f6b828b..460df7d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # go-ping -[![GoDoc](https://godoc.org/github.com/sparrc/go-ping?status.svg)](https://godoc.org/github.com/sparrc/go-ping) -[![Circle CI](https://circleci.com/gh/sparrc/go-ping.svg?style=svg)](https://circleci.com/gh/sparrc/go-ping) +[![GoDoc](https://godoc.org/github.com/go-ping/ping?status.svg)](https://godoc.org/github.com/go-ping/ping) +[![Circle CI](https://circleci.com/gh/go-ping/ping.svg?style=svg)](https://circleci.com/gh/go-ping/ping) ICMP Ping library for Go, inspired by [go-fastping](https://github.com/tatsushid/go-fastping) @@ -55,21 +55,27 @@ it calls the "receive" callback. When it's finished, it calls the "finish" callback. For a full ping example, see -[cmd/ping/ping.go](https://github.com/sparrc/go-ping/blob/master/cmd/ping/ping.go) +[cmd/ping/ping.go](https://github.com/go-ping/ping/blob/master/cmd/ping/ping.go) ## Installation: ``` -go get github.com/sparrc/go-ping +go get github.com/go-ping/ping ``` To install the native Go ping executable: ```bash -go get github.com/sparrc/go-ping/... +go get github.com/go-ping/ping/... $GOPATH/bin/ping ``` +## Maintainers and Support: + +This repo was originally in the personal account of @sparrc, but is now maintained by the [go-ping organization](https://github.com/go-ping). + +For support and help, you usually find us in the #go-ping channel of Gophers slack. See https://invite.slack.golangbridge.org/ for an invite to the Gophers slack org. + ## Note on Linux Support: This library attempts to send an diff --git a/cmd/ping/ping.go b/cmd/ping/ping.go index fd148e6..872ed41 100644 --- a/cmd/ping/ping.go +++ b/cmd/ping/ping.go @@ -7,7 +7,7 @@ import ( "os/signal" "time" - "github.com/sparrc/go-ping" + "github.com/go-ping/ping" ) var usage = `