diff options
| author | Jeff Carr <[email protected]> | 2025-08-28 21:05:02 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-28 21:05:02 -0500 |
| commit | c81333afb60259f79f5467def4d077a4fdf23c50 (patch) | |
| tree | bdc4ab68f2f5be124793e60e83125086da459948 /Makefile | |
| parent | 5be2559741f485f6fc90a50724ab4fac399e8754 (diff) | |
these go.* files are annoyingv1.6.0.1
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..42e9fb2 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +all: + @echo + @echo + +clean: + rm -f go.* + +redomod: + rm -f go.* + GO111MODULE= go mod init + GO111MODULE= go mod tidy + +vet: + @GO111MODULE=off go vet + @echo this go binary package builds okay + +goimports: + goimports -w *.go |
