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
+11
View File
@@ -0,0 +1,11 @@
package osc
type OSCArg struct {
Type string
Value any
}
type OSCMessage struct {
Address string
Args []OSCArg
}