mirror of
https://github.com/CompeyDev/ruck.git
synced 2025-05-04 10:44:01 +01:00
7 lines
159 B
Rust
7 lines
159 B
Rust
use bytes::Bytes;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
|
|
pub struct Message {
|
|
pub body: Bytes,
|
|
}
|