blob: eb8452dd23d1787239b52e9f5c9d3754facb314b (
plain)
1
2
3
4
5
6
7
8
|
package clients
import "context"
// Client is the interface for the end user command line client.
type Client interface {
Start(ctx context.Context, statsCh <-chan struct{}) int
}
|