build:
	clear
	go fmt ./...
	go build -o ./bin/gostore ./cmd/gostore/main.go
	strip -s ./bin/gostore
	upx -f ./bin/gostore
dev.run:
	clear
	go fmt ./...
	go build -race -o ./bin_dev/gostore_dev ./cmd/gostore/main.go
	./dev.sh
mod:
	clear
	go get -u ./...
	go mod tidy -compat=1.21.1
	go mod vendor