Skip to content
This repository has been archived by the owner on Nov 13, 2019. It is now read-only.

vacp2p/dasy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)
}