diff --git a/cmd/decktest/main.go b/cmd/decktest/main.go index e058fdf..5329c50 100644 --- a/cmd/decktest/main.go +++ b/cmd/decktest/main.go @@ -8,7 +8,7 @@ import ( "os/signal" "syscall" - "qrun/streamdeck" + "qrun/lib/streamdeck" ) func main() { diff --git a/cmd/xtouchtest/main.go b/cmd/xtouchtest/main.go index 642d2bb..6c604c3 100644 --- a/cmd/xtouchtest/main.go +++ b/cmd/xtouchtest/main.go @@ -9,7 +9,7 @@ import ( "gitlab.com/gomidi/midi/v2" _ "gitlab.com/gomidi/midi/v2/drivers/rtmididrv" - "qrun/xtouch" + "qrun/lib/xtouch" ) var lcdColors = []xtouch.LCDColor{ diff --git a/Document_BE_X-TOUCH-X-TOUCH-EXTENDER-MIDI-Mode-Implementation.pdf b/docs/Document_BE_X-TOUCH-X-TOUCH-EXTENDER-MIDI-Mode-Implementation.pdf similarity index 100% rename from Document_BE_X-TOUCH-X-TOUCH-EXTENDER-MIDI-Mode-Implementation.pdf rename to docs/Document_BE_X-TOUCH-X-TOUCH-EXTENDER-MIDI-Mode-Implementation.pdf diff --git a/streamdeck/streamdeck.go b/lib/streamdeck/streamdeck.go similarity index 100% rename from streamdeck/streamdeck.go rename to lib/streamdeck/streamdeck.go diff --git a/xtouch/output.go b/lib/xtouch/output.go similarity index 100% rename from xtouch/output.go rename to lib/xtouch/output.go diff --git a/xtouch/xtouch.go b/lib/xtouch/xtouch.go similarity index 100% rename from xtouch/xtouch.go rename to lib/xtouch/xtouch.go