Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 409 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 409 Bytes

Bureka

⚠️ WORK IN PROGRESS! ⚠️

An implementation of the Pastry DHT in go. This package includes a libp2p compatible node making it easy to use in a libp2p network.

Usage with libp2p:

func main() {
    writer := node.NewWriter()
    d := dht.New(id, writer)
    
    n := node.New(ctx.Background(), d, host.Host, writer)
}