1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//! A client library for the seabird-chat ecosystem.
//!
//! This crate provides gRPC clients for interacting with seabird chat servers,
//! supporting both the main seabird protocol and the chat ingest protocol.
//!
//! # Features
//!
//! - `seabird-client` (default): Enables the main SeabirdClient for bot interactions
//! - `chat-ingest-client`: Enables the ChatIngestClient for ingesting chat data
//!
//! # Example
//!
//! ```rust,no_run
//! use seabird::{ClientConfig, SeabirdClient};
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! let config = ClientConfig {
//! url: "https://seabird.example.com".to_string(),
//! token: "your-token-here".to_string(),
//! };
//!
//! let mut client = SeabirdClient::new(config).await?;
//! client.send_message("channel-id", "Hello, world!", None).await?;
//!
//! Ok(())
//! }
//! ```
pub use Block;
pub use ;
pub use SeabirdClient;
pub use ChatIngestClient;