Initial import.

This commit is contained in:
2022-02-26 22:57:13 -08:00
commit a3966fc28b
16 changed files with 730 additions and 0 deletions

11
proto/Makefile Normal file
View File

@@ -0,0 +1,11 @@
all: telemetry.pb.go telemetry_pb2.py
%.pb.go: %.proto
protoc -I=. --go_out=. *.proto
%_pb2.py: %.proto
protoc -I=. --python_out=. *.proto
.PHONY: clean
clean:
rm -f *.pb.go *_pb2.py