initial upd

This commit is contained in:
Luxferre
2026-08-25 17:36:19 +03:00
commit 7d76ec7c12
5 changed files with 3006 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
.PHONY: all build clean test run
all: build
build:
go build -trimpath -ldflags="-s -w" -o bin/th3ist th3ist.go
test:
go test -v ./...
run: build
./bin/th3ist
clean:
rm -rf bin