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