summaryrefslogtreecommitdiff
path: root/internal/clients/client.go
blob: 4a547e81cc71a075a8bf6140e67b3bb637ccae3e (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 string) int
}