todel 0.3.2

The Eludris shared models and logic crate
Documentation
use serde::{Deserialize, Serialize};

/// The message payload
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Message {
    pub author: String,
    pub content: String,
}