Add initial MQTT scrubber service scaffold

This commit is contained in:
2026-03-12 18:12:16 +01:00
parent 957b2c41b3
commit 464f4c3ec4
22 changed files with 4150 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
package model
import "time"
type RawMessage struct {
Topic string
Payload []byte
ReceivedAt time.Time
}
type Record struct {
Measurement string
Tags map[string]string
Fields map[string]any
Timestamp time.Time
}