run: deps test ## Run the application @go run . help: ## Show this help message @echo SteamCache2 Makefile @echo Available targets: @echo run Run the application @echo run-debug Run the application with debug logging @echo test Run all tests @echo deps Download dependencies run-debug: deps test ## Run the application with debug logging @go run . --log-level debug test: deps ## Run all tests @go test -v ./... deps: ## Download dependencies @go mod tidy