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