influxdb/write.go

12 lines
192 B
Go
Raw Normal View History

2018-10-10 17:42:31 +00:00
package platform
import (
"context"
"io"
)
// WriteService writes data read from the reader.
type WriteService interface {
Write(ctx context.Context, org, bucket ID, r io.Reader) error
}