chirpstack_api 4.14.1

ChirpStack Protobuf / gRPC API definitions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: proto version test

all: proto test

proto:
	rm -rf proto
	mkdir -p proto/chirpstack
	mkdir -p proto/google
	cp -r ../proto/* proto/chirpstack
	mv proto/chirpstack/google proto/google/

test:
	cargo test

publish:
	cargo publish