From c01ec8ee383553344c75cef26f986ac1ae8687e9 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Mon, 15 Jan 2024 19:03:46 +0200 Subject: feat(tvix/build): add GRPCBuildServiceWrapper This produces a gRPC BuildService server for anything implementing our BuildService trait. Change-Id: I59c690a432b5e1f59209fd67e2718cb8c935adf2 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10628 Autosubmit: flokli Reviewed-by: raitobezarius Tested-by: BuildkiteCI --- tvix/build/src/proto/mod.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tvix/build/src/proto/mod.rs') diff --git a/tvix/build/src/proto/mod.rs b/tvix/build/src/proto/mod.rs index a9e620ecdd7f..c7831795c30e 100644 --- a/tvix/build/src/proto/mod.rs +++ b/tvix/build/src/proto/mod.rs @@ -3,6 +3,10 @@ use std::path::{Path, PathBuf}; use itertools::Itertools; use tvix_castore::proto::{NamedNode, ValidateNodeError}; +mod grpc_buildservice_wrapper; + +pub use grpc_buildservice_wrapper::GRPCBuildServiceWrapper; + tonic::include_proto!("tvix.build.v1"); #[cfg(feature = "tonic-reflection")] -- cgit 1.4.1