Author
|
C. Torres <torr.c@mailgw.com>
2024-12-05 15:31:58
|
Committer
|
C. Torres <torr.c@mailgw.com>
2024-12-05 15:31:58
|
Commit
|
5924d0a
(patch)
|
Tree
|
74e0b37
|
Parent(s)
|
|
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 <torr.c@mailgw.com>
commits diff:
416addb..5924d0a
2 files changed,
7 insertions,
0 deletions
—
download
Diffstat
Diff options
+5/-0
A go.mod
index
0000000..2e0561f
|
old size: 0B
-
new size: 70B
|
new file mode: -rw-r--r--
|
|
1
|
+ |
module wsserv
|
|
2
|
+ |
|
|
3
|
+ |
go 1.22.6
|
|
4
|
+ |
|
|
5
|
+ |
require github.com/gorilla/websocket v1.5.3
|
+2/-0
A go.sum
index
0000000..25a9fc4
|
old size: 0B
-
new size: 175B
|
new file mode: -rw-r--r--
|
|
1
|
+ |
github.com/gorilla/websocket v1.5.3 h1:saDtZ6Pbx/0u+bgYQ3q96pZgCzfhKXGPqt7kZ72aNNg=
|
|
2
|
+ |
github.com/gorilla/websocket v1.5.3/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
|