Files
esdi/telemetry/provider.go
T
esilva 05af404db1 add the identification ID for a telemetry field
we will use this so the serial device knows where to send the data
2026-03-11 21:20:17 +00:00

8 lines
186 B
Go

// Package telemetry is our interface with our data sources
package telemetry
type TelemetryProvider interface {
Stream() (<-chan TelemetryData, error)
Subscribe(map[int16]FieldID)
}