initial commit

This commit is contained in:
Yiyang Kang 2023-03-04 16:28:13 +08:00
commit 10c2530528
6 changed files with 203 additions and 0 deletions

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
build: lint
CGO_ENABLED=0 go build -v -trimpath -ldflags='-s -w'
lint:
golangci-lint run
clean:
rm -f httpserve
.PHONY: build clean lint