mirror of
https://github.com/muun/recovery.git
synced 2025-11-10 22:10:14 -05:00
Release v0.1.0
This commit is contained in:
29
vendor/github.com/lightninglabs/gozmq/README.md
generated
vendored
Normal file
29
vendor/github.com/lightninglabs/gozmq/README.md
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
# gozmq
|
||||
|
||||
GoZMQ is a pure Go ZMQ pubsub client implementation.
|
||||
|
||||
Only a very limited subset of ZMQ is implemented: NULL security, SUB socket.
|
||||
|
||||
## Usage
|
||||
|
||||
Please visit https://godoc.org/github.com/tstranex/gozmq for the full
|
||||
documentation.
|
||||
|
||||
## Installation
|
||||
|
||||
To install, run:
|
||||
```
|
||||
go get github.com/tstranex/gozmq
|
||||
```
|
||||
|
||||
## Example
|
||||
|
||||
See example/main.go for a full example.
|
||||
|
||||
```go
|
||||
c, err := gozmq.Subscribe("127.0.0.1:1234", []string{""})
|
||||
for {
|
||||
msg, err := c.Receive()
|
||||
// Process message
|
||||
}
|
||||
```
|
||||
Reference in New Issue
Block a user