Files

17 lines
243 B
Go

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
}