Telegram bot to control MQTT lights. Written in Go.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. )