From 5d7b73ce43b8eaa5b3e7cb846878a28ca53d66e4 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 2 Aug 2024 17:50:34 -0300 Subject: go.mod: Use "replace" for all --- go.mod | 15 ++++++++++----- go.sum | 4 ---- 2 files changed, 10 insertions(+), 9 deletions(-) delete mode 100644 go.sum diff --git a/go.mod b/go.mod index 7429449..96e7eeb 100644 --- a/go.mod +++ b/go.mod @@ -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 +) diff --git a/go.sum b/go.sum deleted file mode 100644 index 272772f..0000000 --- a/go.sum +++ /dev/null @@ -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= -- cgit v1.2.3