summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-17 08:39:55 -0600
committerJeff Carr <[email protected]>2024-02-17 08:39:55 -0600
commit1b103f2a1c9beb87e61ebbd04fe7cdbf605988ed (patch)
tree4cf62152850f85474118d9d7e61f0de7f1ffbbdf /Makefile
initial importv0.0.1
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..2a5b530
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+all:
+ GO111MODULE=off go build
+
+goimports:
+ goimports -w *.go
+
+redomod:
+ rm -f go.*
+ goimports -w *.go
+ GO111MODULE= go mod init
+ GO111MODULE= go mod tidy
+