Replace go.mod path with git.gammaspectra.live/P2Pool/zmq4

This commit is contained in:
DataHoarder 2024-04-14 10:10:36 +02:00
parent a35fa84ca9
commit 6aa55619ee
Signed by: DataHoarder
SSH key fingerprint: SHA256:OLTRf6Fl87G52SiR7sWLGNzlJt4WOX+tfI2yxo0z7xk
27 changed files with 35 additions and 35 deletions

View file

@ -1,10 +1,10 @@
# zmq4
[![GitHub release](https://img.shields.io/github/release/go-zeromq/zmq4.svg)](https://github.com/go-zeromq/zmq4/releases)
[![go.dev reference](https://pkg.go.dev/badge/github.com/go-zeromq/zmq4)](https://pkg.go.dev/github.com/go-zeromq/zmq4)
[![CI](https://github.com/go-zeromq/zmq4/workflows/CI/badge.svg)](https://github.com/go-zeromq/zmq4/actions)
[![GitHub release](https://img.shields.io/github/release/go-zeromq/zmq4.svg)](https://git.gammaspectra.live/P2Pool/zmq4/releases)
[![go.dev reference](https://pkg.go.dev/badge/git.gammaspectra.live/P2Pool/zmq4)](https://pkg.go.dev/git.gammaspectra.live/P2Pool/zmq4)
[![CI](https://git.gammaspectra.live/P2Pool/zmq4/workflows/CI/badge.svg)](https://git.gammaspectra.live/P2Pool/zmq4/actions)
[![codecov](https://codecov.io/gh/go-zeromq/zmq4/branch/main/graph/badge.svg)](https://codecov.io/gh/go-zeromq/zmq4)
[![GoDoc](https://godoc.org/github.com/go-zeromq/zmq4?status.svg)](https://godoc.org/github.com/go-zeromq/zmq4)
[![GoDoc](https://godoc.org/git.gammaspectra.live/P2Pool/zmq4?status.svg)](https://godoc.org/git.gammaspectra.live/P2Pool/zmq4)
[![License](https://img.shields.io/badge/License-BSD--3-blue.svg)](https://github.com/go-zeromq/license)
[![DOI](https://zenodo.org/badge/129430151.svg)](https://zenodo.org/badge/latestdoi/129430151)
@ -23,6 +23,6 @@ I (`sbinet`) have not much time to dedicate anymore to this project (as `$WORK`
## Documentation
Documentation for `zmq4` is served by [GoDoc](https://godoc.org/github.com/go-zeromq/zmq4).
Documentation for `zmq4` is served by [GoDoc](https://godoc.org/git.gammaspectra.live/P2Pool/zmq4).

View file

@ -14,7 +14,7 @@ import (
"log"
"time"
zmq "github.com/go-zeromq/zmq4"
zmq "git.gammaspectra.live/P2Pool/zmq4"
)
func main() {

View file

@ -14,7 +14,7 @@ import (
"log"
"time"
zmq "github.com/go-zeromq/zmq4"
zmq "git.gammaspectra.live/P2Pool/zmq4"
)
func main() {

View file

@ -13,7 +13,7 @@ import (
"log"
"time"
"github.com/go-zeromq/zmq4"
"git.gammaspectra.live/P2Pool/zmq4"
)
func main() {

View file

@ -12,7 +12,7 @@ import (
"context"
"log"
"github.com/go-zeromq/zmq4"
"git.gammaspectra.live/P2Pool/zmq4"
)
func main() {

View file

@ -15,7 +15,7 @@ import (
"context"
"log"
"github.com/go-zeromq/zmq4"
"git.gammaspectra.live/P2Pool/zmq4"
)
func main() {

View file

@ -16,7 +16,7 @@ import (
"log"
"time"
"github.com/go-zeromq/zmq4"
"git.gammaspectra.live/P2Pool/zmq4"
)
func main() {

View file

@ -17,7 +17,7 @@ import (
"sync"
"time"
"github.com/go-zeromq/zmq4"
"git.gammaspectra.live/P2Pool/zmq4"
)
const (

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/go-zeromq/zmq4
module git.gammaspectra.live/P2Pool/zmq4
go 1.20

View file

@ -8,7 +8,7 @@ import (
"context"
"net"
"github.com/go-zeromq/zmq4/transport"
"git.gammaspectra.live/P2Pool/zmq4/transport"
)
// Transport implements the zmq4 Transport interface for the inproc transport.

View file

@ -9,7 +9,7 @@ import (
"io"
"sync"
errgrp "github.com/go-zeromq/zmq4/internal/errgroup"
errgrp "git.gammaspectra.live/P2Pool/zmq4/internal/errgroup"
"golang.org/x/sync/errgroup"
)

View file

@ -11,7 +11,7 @@ import (
"testing"
"time"
"github.com/go-zeromq/zmq4"
"git.gammaspectra.live/P2Pool/zmq4"
"golang.org/x/sync/errgroup"
)

View file

@ -10,7 +10,7 @@ import (
"sync"
"testing"
"github.com/go-zeromq/zmq4"
"git.gammaspectra.live/P2Pool/zmq4"
)
func TestIssue99(t *testing.T) {

View file

@ -9,7 +9,7 @@ import (
"fmt"
"io"
"github.com/go-zeromq/zmq4"
"git.gammaspectra.live/P2Pool/zmq4"
)
// security implements the NULL security mechanism.

View file

@ -14,8 +14,8 @@ import (
"testing"
"time"
"github.com/go-zeromq/zmq4"
"github.com/go-zeromq/zmq4/security/null"
"git.gammaspectra.live/P2Pool/zmq4"
"git.gammaspectra.live/P2Pool/zmq4/security/null"
"golang.org/x/sync/errgroup"
)

View file

@ -10,7 +10,7 @@ import (
"fmt"
"io"
"github.com/go-zeromq/zmq4"
"git.gammaspectra.live/P2Pool/zmq4"
)
// security implements the PLAIN security mechanism.

View file

@ -15,8 +15,8 @@ import (
"testing"
"time"
"github.com/go-zeromq/zmq4"
"github.com/go-zeromq/zmq4/security/plain"
"git.gammaspectra.live/P2Pool/zmq4"
"git.gammaspectra.live/P2Pool/zmq4/security/plain"
"golang.org/x/sync/errgroup"
)

View file

@ -14,8 +14,8 @@ import (
"testing"
"time"
"github.com/go-zeromq/zmq4"
"github.com/go-zeromq/zmq4/transport"
"git.gammaspectra.live/P2Pool/zmq4"
"git.gammaspectra.live/P2Pool/zmq4/transport"
"golang.org/x/sync/errgroup"
)

View file

@ -9,8 +9,8 @@ import (
"sort"
"sync"
"github.com/go-zeromq/zmq4/internal/inproc"
"github.com/go-zeromq/zmq4/transport"
"git.gammaspectra.live/P2Pool/zmq4/internal/inproc"
"git.gammaspectra.live/P2Pool/zmq4/transport"
)
// UnknownTransportError records an error when trying to

View file

@ -4,7 +4,7 @@
// Package transport defines the Transport interface and provides a net-based
// implementation that can be used by zmq4 sockets to exchange messages.
package transport // import "github.com/go-zeromq/zmq4/transport"
package transport // import "git.gammaspectra.live/P2Pool/zmq4/transport"
import (
"context"

View file

@ -8,7 +8,7 @@ import (
"reflect"
"testing"
"github.com/go-zeromq/zmq4/internal/inproc"
"git.gammaspectra.live/P2Pool/zmq4/internal/inproc"
)
func TestTransport(t *testing.T) {

View file

@ -12,7 +12,7 @@ import (
"testing"
"time"
"github.com/go-zeromq/zmq4"
"git.gammaspectra.live/P2Pool/zmq4"
"golang.org/x/sync/errgroup"
)

View file

@ -14,7 +14,7 @@ import (
"testing"
"time"
"github.com/go-zeromq/zmq4"
"git.gammaspectra.live/P2Pool/zmq4"
"golang.org/x/sync/errgroup"
)

View file

@ -11,7 +11,7 @@ import (
"testing"
"time"
"github.com/go-zeromq/zmq4"
"git.gammaspectra.live/P2Pool/zmq4"
"golang.org/x/sync/errgroup"
)

View file

@ -11,7 +11,7 @@ import (
"testing"
"time"
"github.com/go-zeromq/zmq4"
"git.gammaspectra.live/P2Pool/zmq4"
"golang.org/x/sync/errgroup"
)

View file

@ -14,7 +14,7 @@ import (
"testing"
"time"
"github.com/go-zeromq/zmq4"
"git.gammaspectra.live/P2Pool/zmq4"
"golang.org/x/sync/errgroup"
)

View file

@ -12,7 +12,7 @@ import (
"testing"
"time"
"github.com/go-zeromq/zmq4"
"git.gammaspectra.live/P2Pool/zmq4"
"golang.org/x/sync/errgroup"
)