Go implementations of distributed paradigms and algorithms.
- client / server
Get this repo
git clone https://github.com/ottenwbe/go-distributed.git
.
├── client-server // client server demo
├── go.mod
├── go.sum
├── LICENSE // MIT
├── Makefile
├── README.md // this
└── vendor // all vendored files
go build -o clientServer client-server/*.go
We use ginkgo for testing.
go get -u github.com/onsi/ginkgo/ginkgo
go get -u github.com/onsi/gomega/...
cd client-server
ginkgo