12 lines
192 B
Go
12 lines
192 B
Go
|
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
|
||
|
}
|