we no longer need to pass in the kind

remove option function WithKind
This commit is contained in:
2026-02-07 13:58:37 +00:00
parent 8a452c83b9
commit 3c47d12719
7 changed files with 47 additions and 56 deletions

View File

@@ -1,8 +1,8 @@
package xair
type MixerKind string
type mixerKind string
const (
KindXAir MixerKind = "xair"
KindX32 MixerKind = "x32"
kindXAir mixerKind = "xair"
kindX32 mixerKind = "x32"
)