diff options
| author | Jeff Carr <[email protected]> | 2024-10-24 16:57:50 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-24 16:57:50 -0500 |
| commit | 87b7bc17b313c04806981408943923d8e66f960a (patch) | |
| tree | 2124e618a2dd06fc0aefa6b4a3a1d449e504bf8a /example/Makefile | |
| parent | dac27e31b5cdf7f9aa382cd342dcfa79423a0f69 (diff) | |
seperate config files for droplets, hypervisors & events
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'example/Makefile')
| -rw-r--r-- | example/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/example/Makefile b/example/Makefile new file mode 100644 index 0000000..ba930d7 --- /dev/null +++ b/example/Makefile @@ -0,0 +1,15 @@ +build: + GO111MODULE=off go build + ./example + +goimports: + goimports -w *.go + +prep: + go get -v -t -u + +run: + go run *.go + +clean: + -rm -f example |
