go first commit

This commit is contained in:
Leon Bösche
2025-12-17 22:57:57 +01:00
parent e5a4de7aab
commit 7749ebfd08
22 changed files with 1044 additions and 0 deletions

16
go_cloud/Makefile Normal file
View File

@@ -0,0 +1,16 @@
.PHONY: build run test clean lint
build:
go build -o bin/api ./cmd/api
run:
go run ./cmd/api
test:
go test ./...
clean:
rm -rf bin/
lint:
golangci-lint run