2022-12-16 22:27:24 +00:00
|
|
|
module rpiMqttControl
|
|
|
|
|
|
|
|
go 1.17
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/eclipse/paho.mqtt.golang v1.3.5
|
|
|
|
github.com/sirupsen/logrus v1.8.1
|
2022-12-31 16:04:35 +00:00
|
|
|
github.com/stianeikeland/go-rpio v4.2.0+incompatible
|
2022-12-16 22:27:24 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/gorilla/websocket v1.4.2 // indirect
|
|
|
|
golang.org/x/net v0.0.0-20200425230154-ff2c4b7c35a0 // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd // indirect
|
|
|
|
)
|