Files
osc-go/pkg/osc/types.go
T
2024-12-15 22:50:32 -06:00

12 lines
123 B
Go

package osc
type OSCArg struct {
Type string
Value any
}
type OSCMessage struct {
Address string
Args []OSCArg
}