gsm-core 0.4.12

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 message mapping helpers.

/// Temporary stand-in for the upcoming message mapper.
#[derive(Debug, Default, Clone)]
#[allow(dead_code)]
pub struct WebChatMapper;

impl WebChatMapper {
    /// Creates a new placeholder instance.
    #[allow(dead_code)]
    pub fn new() -> Self {
        Self
    }
}