pdk_classy/grpc.rs
1// Copyright (c) 2025, Salesforce, Inc.,
2// All rights reserved.
3// For full license text, see the LICENSE.txt file
4
5//! Functionality for managing asynchronous gRPC calls.
6
7mod call;
8mod client;
9mod error;
10mod response;
11mod status;
12
13mod codec;
14
15#[cfg(feature = "protobuf")]
16mod protobuf;
17
18pub(crate) mod transport;
19
20pub use call::*;
21pub use client::*;
22pub use error::*;
23pub use response::*;
24pub use status::*;