Skip to main content

server_watchdog/domain/
client.rs

1use derive_new::new;
2
3#[derive(new, Debug)]
4pub struct Message {
5    pub client_name: String,
6    pub chat_id: String,
7    pub data: String
8}