8 lines
106 B
Go
8 lines
106 B
Go
|
package types
|
||
|
|
||
|
type MeasuredValue interface {
|
||
|
GetID() string
|
||
|
GetSensorID() string
|
||
|
GetValue() float64
|
||
|
}
|