diff options
Diffstat (limited to 'clients/client.go')
| -rw-r--r-- | clients/client.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/clients/client.go b/clients/client.go new file mode 100644 index 0000000..e58f51d --- /dev/null +++ b/clients/client.go @@ -0,0 +1,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() +} |
