after fork

This commit is contained in:
2023-04-11 22:43:48 +02:00
commit 6486bfd1c8
33 changed files with 3366 additions and 0 deletions

18
Makefile Normal file
View File

@ -0,0 +1,18 @@
PROJECT_NAME := "fibers"
PKG := "github.com/long2ice/$(PROJECT_NAME)"
PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/ )
lint:
@golint -set_exit_status ${PKG_LIST}
dep:
@go get -v -d ./...
build: dep
@go build -v $(PKG)
clean:
@rm -f $(PROJECT_NAME)
format:
@gofumpt -l -w . && golines . -w