feat: start recode backend to golang

This commit is contained in:
d3m0k1d
2026-02-03 13:58:58 +03:00
parent afd9658005
commit 94aae8e3ec
29 changed files with 376 additions and 575 deletions

17
backend/Makefile Normal file
View File

@@ -0,0 +1,17 @@
.PHONY: test build clean lint
test:
go test -cover ./...
build:
go build -o bin/d3m0k1d.ru backend/main.go
clean:
rm -f bin/d3m0k1d.ru
lint:
golangci-lint run --fix