influxdb/storage/points_writer.go

11 lines
214 B
Go
Raw Normal View History

2018-10-05 11:43:56 +00:00
package storage
import (
"github.com/influxdata/platform/models"
)
2018-10-05 11:43:56 +00:00
// PointsWriter describes the ability to write points into a storage engine.
type PointsWriter interface {
WritePoints([]models.Point) error
}