package sensor import ( "github.com/go-flucky/flucky/pkg/types" "time" ) type Sensor interface { GetID() string GetTicker() *time.Ticker Read() ([]*types.MeasuredValue, error) }