claw_vector/grpc/mod.rs
1// grpc/mod.rs — public re-exports for the gRPC sub-module plus generated proto bindings.
2/// Standalone gRPC server implementation.
3pub mod server;
4
5/// Auto-generated tonic/prost code compiled from `src/proto/vector.proto`.
6pub mod proto {
7 #![allow(missing_docs)] // generated code does not carry doc comments
8 tonic::include_proto!("clawvector.v1");
9}