draft shits

This commit is contained in:
2026-02-01 11:55:16 +01:00
parent d17ed8c650
commit e27aadc603
22 changed files with 1341 additions and 0 deletions

14
Makefile Executable file
View File

@ -0,0 +1,14 @@
build:
mkdir -p _bin
go build -o _bin/donniemarko
install:
cp bin/donniemarko ~/.local/bin/
test:
go test -v -cover ./...
run:
go run main.go
all: build install