refactor: massive refactor to have only one binary to call

This commit is contained in:
2025-11-26 14:03:32 +01:00
parent 314da54495
commit 3723f84d1a
41 changed files with 272 additions and 188 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
GO = go
BIN = bin/aoc
.PHONY: build test clean
build:
$(GO) build -o $(BIN) ./cmd/aoc
test:
$(GO) test ./...
clean:
rm -f $(BIN)