switch to an OSC library

This commit is contained in:
2024-09-30 12:34:18 -05:00
parent d19f0cd1ff
commit 32212ce256
6 changed files with 35 additions and 318 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ import (
"fmt"
"net"
"github.com/jwetzell/osc-go/pkg/osc"
"github.com/chabad360/go-osc/osc"
"github.com/spf13/cobra"
)
@@ -50,7 +50,7 @@ func listen(netAddress string) {
panic(err)
}
oscMessage, err := osc.FromBytes(buffer[0:bytesRead])
oscMessage, err := osc.NewMessageFromData(buffer[0:bytesRead])
if err != nil {
panic(err)