split types out

This commit is contained in:
2024-12-15 22:50:32 -06:00
parent 94251d47d7
commit bbdb193d65
2 changed files with 11 additions and 10 deletions
-10
View File
@@ -10,16 +10,6 @@ import (
"strings"
)
type OSCArg struct {
Type string
Value any
}
type OSCMessage struct {
Address string
Args []OSCArg
}
func stringToOSCBytes(rawString string) []byte {
var sb strings.Builder
+11
View File
@@ -0,0 +1,11 @@
package osc
type OSCArg struct {
Type string
Value any
}
type OSCMessage struct {
Address string
Args []OSCArg
}