//! Placeholder for WebChat transport helpers (HTTP, webhook utilities, etc.).
/// Temporary stand-in for the upcoming transport utilities.
#[derive(Debug, Default, Clone)]
#[allow(dead_code)]
pub struct WebChatTransport;
impl WebChatTransport {
/// Creates a new placeholder instance.
#[allow(dead_code)]
pub fn new() -> Self {
Self
}
}