unexport client

This commit is contained in:
2026-02-11 21:25:40 +00:00
parent 106f896c45
commit 32a09db1a4
11 changed files with 61 additions and 61 deletions

View File

@@ -3,14 +3,14 @@ package xair
import "fmt"
type Bus struct {
client *Client
client *client
baseAddress string
Eq *Eq
Comp *Comp
}
// newBus creates a new Bus instance
func newBus(c *Client) *Bus {
func newBus(c *client) *Bus {
return &Bus{
client: c,
baseAddress: c.addressMap["bus"],