wormhole-explorer/parser/Makefile

12 lines
123 B
Makefile

SHELL := /bin/bash
build:
go build -o bin/service cmd/main.go
test:
go test -v -cover ./...
.PHONY: build doc test