mirror of
https://github.com/jwetzell/osc-go.git
synced 2026-08-09 17:13:38 +00:00
12 lines
123 B
Go
12 lines
123 B
Go
package osc
|
|
|
|
type OSCArg struct {
|
|
Type string
|
|
Value any
|
|
}
|
|
|
|
type OSCMessage struct {
|
|
Address string
|
|
Args []OSCArg
|
|
}
|