1 2 3 4 5 6 7 8 9 10 11 12
//! PCS External API client for Ppoppo Chat System. //! //! Provides gRPC client for the PCS External Developer Platform (`chat.external` package). pub mod error; pub mod external; // Re-exports pub use error::Error; pub use external::{ExternalChannel, auth_request, connect}; pub use prost_types; pub use tonic;