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