This commit is contained in:
Harivansh Rathi 2026-02-07 13:49:11 -05:00
commit 0595d93c49
28 changed files with 1763 additions and 0 deletions

18
Makefile Normal file
View file

@ -0,0 +1,18 @@
.PHONY: build install clean fmt vet lint
build:
go build -o agentikube ./cmd/agentikube
install:
go install ./cmd/agentikube
clean:
rm -f agentikube
fmt:
go fmt ./...
vet:
go vet ./...
lint: fmt vet