Telegram bot to control MQTT lights. Written in Go.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

go.mod 366B

123456789101112131415
  1. module lights-telegram
  2. go 1.19
  3. require (
  4. github.com/eclipse/paho.mqtt.golang v1.4.1
  5. github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1
  6. gopkg.in/yaml.v3 v3.0.1
  7. )
  8. require (
  9. github.com/gorilla/websocket v1.4.2 // indirect
  10. golang.org/x/net v0.0.0-20200425230154-ff2c4b7c35a0 // indirect
  11. golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
  12. )