diff options
author | Santo Cariotti <santo@dcariotti.me> | 2025-03-29 17:21:27 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2025-03-29 17:21:27 +0100 |
commit | d8295b3f23bd9af7b8947bccb990601aa1739a0b (patch) | |
tree | 8393b80aa821f0973e86e9ff1b7e119acf507304 /go.mod | |
parent | e356e1b4cb32ac0bb38907feff9ebee5d9ad79fd (diff) |
Add network module to establish a TCP full-duplex connection
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -11,11 +11,13 @@ require ( require ( github.com/davecgh/go-spew v1.1.1 // indirect + github.com/kr/pretty v0.1.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect go.uber.org/multierr v1.10.0 // indirect golang.org/x/net v0.34.0 // indirect golang.org/x/sys v0.29.0 // indirect golang.org/x/text v0.21.0 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f // indirect + gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) |