https://github.com/vacp2p/dasy
Data Sync client
https://github.com/vacp2p/dasy
data-sync messaging mvds
Last synced: 27 days ago
JSON representation
Data Sync client
- Host: GitHub
- URL: https://github.com/vacp2p/dasy
- Owner: vacp2p
- License: mit
- Archived: true
- Created: 2019-07-03T22:10:56.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-05T17:07:34.000Z (over 6 years ago)
- Last Synced: 2024-06-20T03:39:56.266Z (over 1 year ago)
- Topics: data-sync, messaging, mvds
- Language: Go
- Homepage:
- Size: 2.27 MB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DaSy 🌼

[](LICENSE)
[](https://godoc.org/github.com/vacp2p/dasy)
[](https://goreportcard.com/report/github.com/vacp2p/dasy)
[](https://travis-ci.com/vacp2p/dasy)
> /ˈdeɪzi/
>
> **Da**ta **Sy**nc Client
This repository implements a basic [messaging data sync client](#TODO) that operates on top of [mvds](https://github.com/vacp2p/mvds).
## Usage
Listening to messages
```go
postchan := make(chan event.Payload)
client.Feed(protobuf.Message_POST).Subscribe(postchan)
for {
post := <-postchan
fmt.Printf("%+v\n", post)
}
```