From 3bf74061f5daa6ef5549df4e3f926897a5007371 Mon Sep 17 00:00:00 2001 From: "C. Torres" Date: Thu, 5 Dec 2024 12:31:58 -0300 Subject: [PATCH] Create Go module Create Golang module named after the project. Its named after the project name since the remote repository is yet to be setup. Signed-off-by: C. Torres --- go.mod | 5 +++++ go.sum | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 go.mod create mode 100644 go.sum diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..cd905c1 --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module wssrv + +go 1.22.6 + +require github.com/gorilla/websocket v1.5.3 diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..25a9fc4 --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/gorilla/websocket v1.5.3 h1:saDtZ6Pbx/0u+bgYQ3q96pZgCzfhKXGPqt7kZ72aNNg= +github.com/gorilla/websocket v1.5.3/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=