feat: 支持MQTT通信
cmd/agent/core/chat_msg.go
0 → 100644
cmd/agent/global/mqtt.go
0 → 100644
... | @@ -8,6 +8,7 @@ replace linkfog.com/pluginx => web.lueluesay.top/git/lil/pluginx v0.0.0-20241014 | ... | @@ -8,6 +8,7 @@ replace linkfog.com/pluginx => web.lueluesay.top/git/lil/pluginx v0.0.0-20241014 |
require ( | require ( | ||
github.com/beevik/ntp v1.4.3 | github.com/beevik/ntp v1.4.3 | ||
github.com/eclipse/paho.mqtt.golang v1.5.0 | |||
github.com/judwhite/go-svc v1.2.1 | github.com/judwhite/go-svc v1.2.1 | ||
github.com/olekukonko/tablewriter v0.0.5 | github.com/olekukonko/tablewriter v0.0.5 | ||
github.com/prometheus/procfs v0.15.1 | github.com/prometheus/procfs v0.15.1 | ||
... | @@ -19,12 +20,14 @@ require ( | ... | @@ -19,12 +20,14 @@ require ( |
require ( | require ( | ||
github.com/go-ole/go-ole v1.2.6 // indirect | github.com/go-ole/go-ole v1.2.6 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/gorilla/websocket v1.5.3 // indirect | |||
github.com/mattn/go-runewidth v0.0.9 // indirect | github.com/mattn/go-runewidth v0.0.9 // indirect | ||
github.com/satori/go.uuid v1.2.0 // indirect | github.com/satori/go.uuid v1.2.0 // indirect | ||
github.com/tklauser/go-sysconf v0.3.14 // indirect | github.com/tklauser/go-sysconf v0.3.14 // indirect | ||
github.com/tklauser/numcpus v0.8.0 // indirect | github.com/tklauser/numcpus v0.8.0 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.4 // indirect | github.com/yusufpapurcu/wmi v1.2.4 // indirect | ||
golang.org/x/net v0.28.0 // indirect | golang.org/x/net v0.28.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | |||
golang.org/x/sys v0.26.0 // indirect | golang.org/x/sys v0.26.0 // indirect | ||
golang.org/x/text v0.17.0 // indirect | golang.org/x/text v0.17.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect | google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect | ||
... | ... |
Please register or sign in to comment