https://github.com/tendermint/tendermint
Raw File
Tip revision: 78443687a6f90be279986420c59fd3518d552696 authored by William Banfield on 03 November 2022, 20:58:17 UTC
uncomment envelope methods
Tip revision: 7844368
Makefile
.PHONY: docs
REPO:=github.com/tendermint/tendermint/libs/events

docs:
	@go get github.com/davecheney/godoc2md
	godoc2md $(REPO) > README.md

test:
	go test -v ./...
back to top