add handle: addComment;addPackage storage:ListPackage;AddComment;AddPackage

This commit is contained in:
2023-08-10 12:38:55 +03:00
parent bbb9174d8a
commit 92153397a0
22 changed files with 889 additions and 672 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
.PHONY: build
build:
go build -o bin/app -mod=readonly ./main.go
.PHONY: test
test:
go test -v ./... -race -cover
.PHONY: lint
lint:
# Install the binary release of golangci-lint
# https://github.com/golangci/golangci-lint#install
golangci-lint run