diff options
| author | Jeff Carr <[email protected]> | 2024-11-03 00:39:52 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-03 00:39:52 -0500 |
| commit | 35f764f2bc12553cd93c4f5e7b046f887ec353cb (patch) | |
| tree | d7a4b631c6deb9dee77b4ec23be2adaa7e7af1a0 /example/Makefile | |
initial file
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 |
