Added README detailing trialed peer discovery libs

This commit is contained in:
Samuel Hawksby-Robinson 2021-07-09 16:03:45 +01:00
parent 8a5717b73c
commit d9f8a72f4c
No known key found for this signature in database
GPG Key ID: AD6D836B165CCDA7
4 changed files with 20 additions and 5 deletions

14
README.md Normal file
View File

@ -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`

View File

@ -1,4 +1,4 @@
package app
package lib_tests
import (
"fmt"

View File

@ -1,4 +1,4 @@
package app
package lib_tests
import (
"context"

View File

@ -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) {