Skip to main content

hippmem_grpc/
lib.rs

1//! HIPPMEM gRPC thin wrapper: proto + tonic service (ADR-011/021).
2
3#[cfg(feature = "grpc")]
4pub mod service;
5
6#[cfg(test)]
7mod tests {
8    #[test]
9    fn grpc_feature_gated() {
10        // Compiles successfully when the grpc feature is disabled (default)
11    }
12}