summaryrefslogtreecommitdiff
path: root/clients/client.go
blob: e58f51dfaf60c706501e5c55d6426de88505849d (plain)
1
2
3
4
5
6
7
8
9
package clients

import "sync"

// Client is the interface for the end user command line client.
type Client interface {
	Start(wg *sync.WaitGroup) int
	Stop()
}