From 77e84e8972d9a5d69a27b86dea90f85d9d69ed0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Z=C3=B6rner?= Date: Sat, 15 Jan 2022 10:32:02 +0100 Subject: [PATCH] modified internal imports --- action.go | 2 +- client.go | 2 +- event.go | 2 +- go.mod | 5 +++++ go.sum | 2 ++ 5 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 go.mod create mode 100644 go.sum diff --git a/action.go b/action.go index 5b7e2a7..b81300e 100644 --- a/action.go +++ b/action.go @@ -3,7 +3,7 @@ package streamdeck import ( "context" - sdcontext "github.com/samwho/streamdeck/context" + sdcontext "github.com/StefanZoerner/streamdeck/context" ) type Action struct { diff --git a/client.go b/client.go index 94a1aa0..4d3be14 100644 --- a/client.go +++ b/client.go @@ -13,7 +13,7 @@ import ( "time" "github.com/gorilla/websocket" - sdcontext "github.com/samwho/streamdeck/context" + sdcontext "github.com/StefanZoerner/streamdeck/context" ) var ( diff --git a/event.go b/event.go index 23a77ec..d4891a5 100644 --- a/event.go +++ b/event.go @@ -4,7 +4,7 @@ import ( "context" "encoding/json" - sdcontext "github.com/samwho/streamdeck/context" + sdcontext "github.com/StefanZoerner/streamdeck/context" ) type Event struct { diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..3f5b409 --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module github.com/StefanZoerner/streamdeck + +go 1.15 + +require github.com/gorilla/websocket v1.4.2 diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..85efffd --- /dev/null +++ b/go.sum @@ -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=