add basic mqtt client

This commit is contained in:
Joel Wetzell
2025-11-22 18:07:15 -06:00
parent 8a78daeee3
commit 532a37816f
4 changed files with 158 additions and 0 deletions

7
go.mod
View File

@@ -3,6 +3,13 @@ module github.com/jwetzell/showbridge-go
go 1.25.1
require (
github.com/eclipse/paho.mqtt.golang v1.5.1
github.com/jwetzell/osc-go v0.0.0-20251114203632-24077a77d6c7
github.com/urfave/cli/v3 v3.6.0
)
require (
github.com/gorilla/websocket v1.5.3 // indirect
golang.org/x/net v0.44.0 // indirect
golang.org/x/sync v0.17.0 // indirect
)