gsm_core/platforms/webchat/mapper.rs
1//! Placeholder for WebChat message mapping helpers.
2
3/// Temporary stand-in for the upcoming message mapper.
4#[derive(Debug, Default, Clone)]
5#[allow(dead_code)]
6pub struct WebChatMapper;
7
8impl WebChatMapper {
9 /// Creates a new placeholder instance.
10 #[allow(dead_code)]
11 pub fn new() -> Self {
12 Self
13 }
14}