Initial commit

This commit is contained in:
Miguel de la Cruz 2020-02-28 23:34:24 +01:00
commit 54902edaf4
5 changed files with 42 additions and 0 deletions

12
Makefile Normal file
View file

@ -0,0 +1,12 @@
vendor:
go mod vendor
go mod tidy
check:
golangci-lint run -E gofmt ./...
build:
go build -mod=vendor
install:
go install -mod=vendor