rumble-livestream-lib-go/vendor/github.com/r3labs/sse/v2/Makefile
2024-02-23 11:38:43 -05:00

21 lines
264 B
Makefile

install:
go install -v
build:
go build -v ./...
lint:
golint ./...
go vet ./...
test:
go test -v ./... --cover
deps:
go get -u gopkg.in/cenkalti/backoff.v1
go get -u github.com/golang/lint/golint
go get -u github.com/stretchr/testify
clean:
go clean