diff --git a/go.mod b/go.mod index 74f5516..7966348 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,8 @@ module git.wisehodl.dev/jay/go-honeybee go 1.23.5 + +require ( + github.com/gorilla/websocket v1.5.3 // indirect + github.com/stretchr/testify v1.11.1 // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..33c3566 --- /dev/null +++ b/go.sum @@ -0,0 +1,4 @@ +github.com/gorilla/websocket v1.5.3 h1:saDtZ6Pbx/0u+bgYQ3q96pZgCzfhKXGPqt7kZ72aNNg= +github.com/gorilla/websocket v1.5.3/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= +github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=