2019-06-19 17:18:01 +00:00
|
|
|
package logfile
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/go-flucky/flucky/pkg/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Logfile interface {
|
2019-06-25 20:22:34 +00:00
|
|
|
Read() ([]types.MeasuredValue, error)
|
|
|
|
Write(measuredValues []types.MeasuredValue) error
|
2019-06-19 17:18:01 +00:00
|
|
|
}
|