varfish-server-worker 0.16.1

Rust-based worker for varfish-server
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: default
default:
	@echo "Usage: make [target]"
	@echo ""
	@echo "Targets:"
	@echo "  protolint-fix  Run protolint with --fix option"
	@echo "  protolint-check  Run protolint to check the proto files"


.PHONY: protolint-fix
protolint-fix:
	protolint lint -fix .

.PHONY: protolint-check
protolint-check:
	protolint lint .