mirror of
https://github.com/weaveworks/scope.git
synced 2026-04-20 09:27:35 +00:00
11 lines
194 B
Go
11 lines
194 B
Go
package xfer
|
|
|
|
import "io"
|
|
|
|
// Publisher is something which can send a stream of data somewhere, probably
|
|
// to a remote collector.
|
|
type Publisher interface {
|
|
Publish(io.Reader) error
|
|
Stop()
|
|
}
|