mirror of
https://github.com/onyx-and-iris/xair-cli.git
synced 2026-02-26 08:19:11 +00:00
- add package comments - fix redeclaration of built-in min/max - add comments to exported types - remove unused parameters
10 lines
222 B
Go
10 lines
222 B
Go
package xair
|
|
|
|
// InfoResponse represents the response from the /info OSC address, containing details about the X-Air device.
|
|
type InfoResponse struct {
|
|
Host string
|
|
Name string
|
|
Model string
|
|
Firmware string
|
|
}
|