Added README detailing trialed peer discovery libs
This commit is contained in:
parent
8a5717b73c
commit
d9f8a72f4c
|
@ -0,0 +1,14 @@
|
|||
## Native Go Zyre
|
||||
[go-zeromq/zyre](https://github.com/go-zeromq/zyre)
|
||||
|
||||
Test code `lib_test/zyre_test.go`
|
||||
|
||||
## Native Go ZMQ4
|
||||
[go-zeromq/zmq4](https://github.com/go-zeromq/zmq4)
|
||||
|
||||
Test code `lib_test/zmq4_test.go`
|
||||
|
||||
## Peer Discovery
|
||||
[schollz/peerdiscovery](https://github.com/schollz/peerdiscovery)
|
||||
|
||||
Test code `lib_test/peer_discovery_test.go`
|
|
@ -1,4 +1,4 @@
|
|||
package app
|
||||
package lib_tests
|
||||
|
||||
import (
|
||||
"fmt"
|
|
@ -1,4 +1,4 @@
|
|||
package app
|
||||
package lib_tests
|
||||
|
||||
import (
|
||||
"context"
|
|
@ -1,12 +1,13 @@
|
|||
package app
|
||||
package lib_tests
|
||||
|
||||
import (
|
||||
"context"
|
||||
"github.com/davecgh/go-spew/spew"
|
||||
"github.com/go-zeromq/zyre"
|
||||
"sync"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/davecgh/go-spew/spew"
|
||||
"github.com/go-zeromq/zyre"
|
||||
)
|
||||
|
||||
func TestZyre(t *testing.T) {
|
Loading…
Reference in New Issue