Siegfried Siegert
daa79b27ca
- add a database for devices - read devices from database and present this data on a simple web/REST interface The code or model is from a blog entry from Alex Edward: https://www.alexedwards.net/blog/organising-database-access
12 lines
225 B
Modula-2
12 lines
225 B
Modula-2
module mqttListener
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
github.com/eclipse/paho.mqtt.golang v1.2.0
|
|
github.com/mattn/go-sqlite3 v1.14.2
|
|
github.com/mmcdole/gofeed v1.0.0
|
|
github.com/pelletier/go-toml v1.2.0
|
|
github.com/spf13/cobra v1.0.0
|
|
)
|