Skip to content

Commit

Permalink
Point to celebdor/zeroconf so we can get PRs in
Browse files Browse the repository at this point in the history
  • Loading branch information
celebdor committed Apr 4, 2019
1 parent c2d1b41 commit feb66fa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ Though it does not support all requirements yet, the aim is to provide a complie
By now, it should be compatible to [Avahi](http://avahi.org/) (tested) and Apple's Bonjour (untested).
Target environments: private LAN/Wifi, small or isolated networks.

[![GoDoc](https://godoc.org/github.com/grandcat/zeroconf?status.svg)](https://godoc.org/github.com/grandcat/zeroconf)
[![Go Report Card](https://goreportcard.com/badge/github.com/grandcat/zeroconf)](https://goreportcard.com/report/github.com/grandcat/zeroconf)
[![GoDoc](https://godoc.org/github.com/celebdor/zeroconf?status.svg)](https://godoc.org/github.com/celebdor/zeroconf)
[![Go Report Card](https://goreportcard.com/badge/github.com/celebdor/zeroconf)](https://goreportcard.com/report/github.com/celebdor/zeroconf)

## Install
Nothing is as easy as that:
```bash
$ go get -u github.com/grandcat/zeroconf
$ go get -u github.com/celebdor/zeroconf
```
This package requires **Go 1.7** (context in std lib) or later.

Expand Down Expand Up @@ -51,7 +51,7 @@ if err != nil {

<-ctx.Done()
```
See https://github.com/grandcat/zeroconf/blob/master/examples/resolv/client.go.
See https://github.com/celebdor/zeroconf/blob/master/examples/resolv/client.go.

## Lookup a specific service instance

Expand Down Expand Up @@ -80,7 +80,7 @@ case <-time.After(time.Second * 120):

log.Println("Shutting down.")
```
See https://github.com/grandcat/zeroconf/blob/master/examples/register/server.go.
See https://github.com/celebdor/zeroconf/blob/master/examples/register/server.go.

## Features and ToDo's
This list gives a quick impression about the state of this library.
Expand Down
2 changes: 1 addition & 1 deletion examples/proxyservice/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"time"

"github.com/grandcat/zeroconf"
"github.com/celebdor/zeroconf"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/register/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"time"

"github.com/grandcat/zeroconf"
"github.com/celebdor/zeroconf"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/resolv/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"
"time"

"github.com/grandcat/zeroconf"
"github.com/celebdor/zeroconf"
)

var (
Expand Down

0 comments on commit feb66fa

Please sign in to comment.