status-go/exchanges/Makefile
2023-04-27 14:36:29 -03:00

12 lines
191 B
Makefile

.PHONY: regen fetch test
regen:
go run cmd/main.go --from-json-file=exchanges.json
gofmt -w exchanges.go
fetch:
go run cmd/main.go
gofmt -w exchanges.go
test:
go test -v -cover ./...