diff options
| author | Jeff Carr <[email protected]> | 2024-01-16 16:37:43 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-16 16:37:43 -0600 |
| commit | 0d6e4271e801b8db8e10c6b5f6ee79a988f7dc1b (patch) | |
| tree | 733b3f5eecf83dfc7a522d63ca3407ca3548b513 /Makefile | |
initial commit
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fa93380 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +all: + go build -v -x + ./helloworld + +push: + git add --all + git commit -a + git push + +redomod: + rm -f go.* + GO111MODULE= go mod init + GO111MODULE= go mod tidy + |
