.PHONY: build run clean
build:
go build -o bin/app ./src
run: build
./bin/app
clean:
rm -f ./bin/app