Add base cli and connection logic

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby 2020-04-06 11:54:01 -04:00
parent be8e73292c
commit 37591c714b
5 changed files with 232 additions and 21 deletions

View file

@ -29,7 +29,10 @@ GOOS ?= $(shell go env GOOS)
export GO111MODULE=off
all: protos
all: protos example cli
cli:
cd cmd && go build -v -o ../bin/docker
protos:
@protobuild --quiet ${PACKAGES}
@ -39,4 +42,4 @@ example:
FORCE:
.PHONY: protos example
.PHONY: protos example cli