summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2023-07-15 16:58:36 -0700
committerMike Crute <mike@crute.us>2023-07-15 16:58:36 -0700
commitfea07831eadd35532055ec16fc43b0cde56a54b1 (patch)
tree35c304a16e5b6f9acadb9c66f4c48215ad9abd2b /go.mod
parent51949f8dc563c7c1ce03d8862abbee4cc1e20943 (diff)
downloadwebsocket_proxy-fea07831eadd35532055ec16fc43b0cde56a54b1.tar.bz2
websocket_proxy-fea07831eadd35532055ec16fc43b0cde56a54b1.tar.xz
websocket_proxy-fea07831eadd35532055ec16fc43b0cde56a54b1.zip
Cleanup, add local client
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod7
1 files changed, 6 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index 423ea5c..3f372f6 100644
--- a/go.mod
+++ b/go.mod
@@ -1,8 +1,13 @@
1module code.crute.us/mcrute/websocket_proxy 1module code.crute.us/mcrute/websocket_proxy
2 2
3go 1.13 3go 1.20
4 4
5require ( 5require (
6 github.com/gorilla/websocket v1.4.1 6 github.com/gorilla/websocket v1.4.1
7 github.com/spf13/cobra v0.0.5 7 github.com/spf13/cobra v0.0.5
8) 8)
9
10require (
11 github.com/inconshreveable/mousetrap v1.0.0 // indirect
12 github.com/spf13/pflag v1.0.3 // indirect
13)