fix(pkg/daemon): use measuredValue interface instead of different structs

This commit is contained in:
2019-06-25 22:22:34 +02:00
parent 30603e348c
commit 08c2cbbf57
20 changed files with 682 additions and 860 deletions

View File

@ -0,0 +1,7 @@
package types
type MeasuredValue interface {
GetID() string
GetSensorID() string
GetValue() float64
}