Skip to content

Commit 85ced3e

Browse files
committed
Fix go.mod and imports
1 parent f1e8967 commit 85ced3e

File tree

23 files changed

+41
-47
lines changed

23 files changed

+41
-47
lines changed

actionhandlers/chained.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package actionhandlers
22

3-
import streamdeck "github.com/magicmonkey/go-streamdeck"
3+
import streamdeck "github.com/andinus-contrib/go-streamdeck"
44

55
type ChainedAction struct {
66
actions []streamdeck.ButtonActionHandler

actionhandlers/colourchange.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package actionhandlers
33
import (
44
"image/color"
55

6-
streamdeck "github.com/magicmonkey/go-streamdeck"
7-
"github.com/magicmonkey/go-streamdeck/buttons"
6+
streamdeck "github.com/andinus-contrib/go-streamdeck"
7+
"github.com/andinus-contrib/go-streamdeck/buttons"
88
)
99

1010
type ColourChangeAction struct {

actionhandlers/custom.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package actionhandlers
22

3-
import streamdeck "github.com/magicmonkey/go-streamdeck"
3+
import streamdeck "github.com/andinus-contrib/go-streamdeck"
44

55
type CustomAction struct {
66
handler func(streamdeck.Button)

actionhandlers/exec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package actionhandlers
22

33
import (
4-
streamdeck "github.com/magicmonkey/go-streamdeck"
4+
streamdeck "github.com/andinus-contrib/go-streamdeck"
55
"os/exec"
66
)
77

actionhandlers/numberprint.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package actionhandlers
22

33
import (
44
"fmt"
5-
streamdeck "github.com/magicmonkey/go-streamdeck"
5+
streamdeck "github.com/andinus-contrib/go-streamdeck"
66
)
77

88
type NumberPrintAction struct {

actionhandlers/textlabel.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package actionhandlers
22

33
import (
4-
streamdeck "github.com/magicmonkey/go-streamdeck"
5-
"github.com/magicmonkey/go-streamdeck/buttons"
4+
streamdeck "github.com/andinus-contrib/go-streamdeck"
5+
"github.com/andinus-contrib/go-streamdeck/buttons"
66
)
77

88
type TextLabelChangeAction struct {

actionhandlers/textprint.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package actionhandlers
22

33
import (
44
"fmt"
5-
streamdeck "github.com/magicmonkey/go-streamdeck"
5+
streamdeck "github.com/andinus-contrib/go-streamdeck"
66
)
77

88
type TextPrintAction struct {

buttons/colour.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"image/color"
66
"image/draw"
77

8-
streamdeck "github.com/magicmonkey/go-streamdeck"
8+
streamdeck "github.com/andinus-contrib/go-streamdeck"
99
)
1010

1111
// ColourButton represents a button which is a solid block of a single colour

buttons/imagefile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"image/draw"
77
"os"
88

9-
streamdeck "github.com/magicmonkey/go-streamdeck"
9+
streamdeck "github.com/andinus-contrib/go-streamdeck"
1010
)
1111

1212
// ImageFileButton represents a button with an image on it, where the image is loaded

buttons/text.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"github.com/golang/freetype"
1111
"github.com/golang/freetype/truetype"
12-
streamdeck "github.com/magicmonkey/go-streamdeck"
12+
streamdeck "github.com/andinus-contrib/go-streamdeck"
1313
)
1414

1515
// TextButton represents a button with text on it

0 commit comments

Comments
 (0)