Based on https://github.com/nnevatie/capnwebcpp
1module github.com/gocapnweb/examples/batch-pipelining
2
3go 1.23.0
4
5toolchain go1.24.2
6
7replace github.com/gocapnweb => ../..
8
9require github.com/gocapnweb v0.0.0-00010101000000-000000000000
10
11require (
12 github.com/gorilla/websocket v1.5.0 // indirect
13 github.com/labstack/echo/v4 v4.13.4 // indirect
14 github.com/labstack/gommon v0.4.2 // indirect
15 github.com/mattn/go-colorable v0.1.14 // indirect
16 github.com/mattn/go-isatty v0.0.20 // indirect
17 github.com/valyala/bytebufferpool v1.0.0 // indirect
18 github.com/valyala/fasttemplate v1.2.2 // indirect
19 golang.org/x/crypto v0.38.0 // indirect
20 golang.org/x/net v0.40.0 // indirect
21 golang.org/x/sys v0.33.0 // indirect
22 golang.org/x/text v0.25.0 // indirect
23 golang.org/x/time v0.11.0 // indirect
24)