gsm-core 0.4.8

Core types and platform abstractions for the Greentic messaging runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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
    }
}