Initial commit

This commit is contained in:
ranjith
2025-07-15 15:22:42 +05:30
commit 5fa8b09acc
4 changed files with 187 additions and 0 deletions

15
go.mod Normal file
View File

@@ -0,0 +1,15 @@
module mqtt-client
go 1.22.2
require (
github.com/eclipse/paho.mqtt.golang v1.5.0
github.com/joho/godotenv v1.5.1
github.com/lib/pq v1.10.9
)
require (
github.com/gorilla/websocket v1.5.3 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/sync v0.10.0 // indirect
)