Data Sync client
Go to file
Dean Eigenmann 3cb31db27c
update/mvds (#11)
* updates mvds to add mdf

* fix
2019-11-05 18:07:30 +01:00
client Update client.go 2019-10-29 14:39:00 +01:00
crypto added comment 2019-08-11 18:25:44 +02:00
event feature/payloads (#7) 2019-08-07 14:31:32 +02:00
protobuf remove/protobuf-parent (#10) 2019-10-22 11:08:57 +02:00
vendor update/mvds (#11) 2019-11-05 18:07:30 +01:00
.gitignore Initial commit 2019-07-03 18:10:56 -04:00
.travis.yml Update .travis.yml 2019-11-05 18:00:01 +01:00
LICENSE Update LICENSE 2019-11-04 16:01:15 +01:00
Makefile fixed 2019-08-07 14:41:56 +02:00
README.md Update README.md 2019-08-14 17:29:04 +02:00
go.mod update/mvds (#11) 2019-11-05 18:07:30 +01:00
go.sum update/mvds (#11) 2019-11-05 18:07:30 +01:00

README.md

DaSy 🌼

Version License API Reference Go Report Card Build Status

/ˈdeɪzi/

Data Sync Client

This repository implements a basic messaging data sync client that operates on top of mvds.

Usage

Listening to messages


postchan := make(chan event.Payload)

client.Feed(protobuf.Message_POST).Subscribe(postchan)

for {
	post := <-postchan
	fmt.Printf("%+v\n", post)
}