14 lines
114 B
Makefile
14 lines
114 B
Makefile
|
|
all: build
|
|
|
|
build:
|
|
go build .
|
|
|
|
watch-deps:
|
|
go install github.com/cosmtrek/air@latest
|
|
|
|
watch: watch-deps
|
|
air
|
|
|
|
|