diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..355c1c2 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ + +all: build + +build: + go build . + +watch-deps: + go install github.com/cosmtrek/air@latest + +watch: watch-deps + air + +