diff options
| author | EuAndreh <eu@euandre.org> | 2024-08-02 17:50:34 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2024-08-02 17:50:34 -0300 |
| commit | 5d7b73ce43b8eaa5b3e7cb846878a28ca53d66e4 (patch) | |
| tree | 397563b69954d0a62e325b621f1aaa08f288ec42 | |
| parent | go mod tidy (diff) | |
| download | wscat-5d7b73ce43b8eaa5b3e7cb846878a28ca53d66e4.tar.gz wscat-5d7b73ce43b8eaa5b3e7cb846878a28ca53d66e4.tar.xz | |
go.mod: Use "replace" for all
| -rw-r--r-- | go.mod | 15 | ||||
| -rw-r--r-- | go.sum | 4 |
2 files changed, 10 insertions, 9 deletions
@@ -2,10 +2,15 @@ module euandre.org/wscat go 1.21.5 -require github.com/gorilla/websocket v1.5.1 +require ( + euandre.org/gobang v0.1.0 + github.com/gorilla/websocket v1.5.3 +) -require golang.org/x/net v0.17.0 // indirect +require golang.org/x/net v0.26.0 // indirect -require euandre.org/gobang v0.1.0 - -replace euandre.org/gobang => ../gobang +replace ( + euandre.org/gobang => ../gobang + github.com/gorilla/websocket => ../websocket + golang.org/x/net => ../netx +) @@ -1,4 +0,0 @@ -github.com/gorilla/websocket v1.5.1 h1:gmztn0JnHVt9JZquRuzLw3g4wouNVzKL15iLr/zn/QY= -github.com/gorilla/websocket v1.5.1/go.mod h1:x3kM2JMyaluk02fnUJpQuwD2dCS5NDG2ZHL0uE0tcaY= -golang.org/x/net v0.17.0 h1:pVaXccu2ozPjCXewfr1S7xza/zcXTity9cCdXQYSjIM= -golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= |
