9 lines
169 B
Rust
9 lines
169 B
Rust
use serde::Serialize;
|
|
|
|
#[derive(Serialize)]
|
|
pub struct GatewayEvent<T: Serialize> {
|
|
pub namespace: &'static str,
|
|
pub action: &'static str,
|
|
pub content: T,
|
|
}
|