Add MQTT presence to Redis integration

This commit is contained in:
2026-02-02 12:35:38 +07:00
parent e1ceb88ba5
commit af21216d4c
5 changed files with 195 additions and 0 deletions

16
mqtt/go.mod Normal file
View File

@@ -0,0 +1,16 @@
module git.proit.id/dsutanto/backone-manage-go
go 1.24.3
require (
github.com/eclipse/paho.mqtt.golang v1.5.1
github.com/go-redis/redis/v8 v8.11.5
golang.org/x/net v0.49.0
)
require (
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/gorilla/websocket v1.5.3 // indirect
golang.org/x/sync v0.17.0 // indirect
)