.PHONY: build install
build:
@go build -o ckc ./...
@echo "✅ ckc built"
install:
@sudo mv ./ckc /usr/local/bin/ckc
@echo "✅ ckc installed"