Refactor a lot of the proto stuff.

This commit is contained in:
David Given
2024-10-08 23:18:30 +02:00
parent a777470cda
commit 27ab1e3e5a
17 changed files with 257 additions and 78 deletions

9
lib/fluxsource/build.py Normal file
View File

@@ -0,0 +1,9 @@
from build.protobuf import proto, protocc
proto(name="proto", srcs=["./fluxsource.proto"], deps=["lib+common_proto"])
protocc(
name="proto_lib",
srcs=[".+proto"],
deps=["lib+common_proto", "lib+common_proto_lib"],
)