Loading .gitignore +6 −0 Original line number Diff line number Diff line # === git ignore === .idea *.exe bin/* # === End Of File === No newline at end of file Makefile 0 → 100644 +13 −0 Original line number Diff line number Diff line # === Makefile === all: \ bin/wator bin/wator: cmd/wator/main.go go build -o $@ $< clean: find bin -type f -delete # === End Of File === No newline at end of file Loading
.gitignore +6 −0 Original line number Diff line number Diff line # === git ignore === .idea *.exe bin/* # === End Of File === No newline at end of file
Makefile 0 → 100644 +13 −0 Original line number Diff line number Diff line # === Makefile === all: \ bin/wator bin/wator: cmd/wator/main.go go build -o $@ $< clean: find bin -type f -delete # === End Of File === No newline at end of file