go.mod file added for Go modules system

This commit is contained in:
Stefan Zörner 2022-01-16 09:26:29 +01:00
parent 7661d46543
commit d0a90addfd
2 changed files with 7 additions and 0 deletions

5
go.mod Normal file
View File

@ -0,0 +1,5 @@
module github.com/samwho/streamdeck
go 1.15
require github.com/gorilla/websocket v1.4.2

2
go.sum Normal file
View File

@ -0,0 +1,2 @@
github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc=
github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=