diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..b3f4ff74 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +.PHONY: Golang Library + +all: tidy update + +tidy: + @go mod tidy + +update: + @go get -u all + +help: + @echo "make tidy - 整理依赖" + @echo "make update - 更新依赖"