run:
	go run src/*.go

build:
	go build -o bin/main src/main.go

clean:
	rm -rf bin/*

format:
	go fmt src/*.go