blob: 5271e188a457899249f6f7ae8a2387baeeed50bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package output
import (
"io"
)
type OutputClient interface {
GetWriter(path string) (io.Writer, error)
ReadMetadata(string) (map[string]string, error)
IsMissing(path string) (bool, error)
}
|