summaryrefslogtreecommitdiff
path: root/Makefile
blob: fa9338036fdf15492ecc534132f7dd7e3acba113 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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