setup the skeletal structure for Eq, Comp and Gate.

implement strip/bus eq on commands.
This commit is contained in:
2026-02-01 15:09:38 +00:00
parent c4a86adf14
commit 89ab8ee258
7 changed files with 239 additions and 12 deletions

9
internal/xair/gate.go Normal file
View File

@@ -0,0 +1,9 @@
package xair
type Gate struct {
client *Client
}
func newGate(c *Client) *Gate {
return &Gate{client: c}
}