diff --git a/Makefile b/Makefile index b3e91e6..fdda86b 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: build build: check fmt - go build -o narc ./ + go build -o narc cmd/narc/main.go check: staticcheck vulncheck deadcode diff --git a/main.go b/main.go deleted file mode 100644 index e4c1cd7..0000000 --- a/main.go +++ /dev/null @@ -1,7 +0,0 @@ -package main - -import "github.com/nais/narcos/internal/cli" - -func main() { - cli.Run() -}