influxdb/storage/points_writer.go

9 lines
209 B
Go
Raw Normal View History

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