Add support for "event"-like interface to parsing

and drop the querier
This commit is contained in:
2022-11-08 19:26:23 -05:00
parent c93d1cd4f0
commit b97681c710
11 changed files with 398 additions and 260 deletions

View File

@@ -1,3 +1,5 @@
BENCHTIME ?= 10s
.PHONY: all
all: test
@@ -9,6 +11,10 @@ clean:
test:
go test -v -coverprofile=coverage.out ./...
.PHONY: bench
bench:
go test -v -bench . -benchtime $(BENCHTIME) ./...
.PHONY: show-cover
show-cover:
go tool cover -func=coverage.out