discord-rpc-client/src/models/mod.rs

11 lines
207 B
Rust
Raw Normal View History

mod message;
mod command;
mod handshake;
use serde::Serialize;
pub use self::message::{Message, OpCode};
pub use self::command::Command;
pub use self::handshake::Handshake;
pub trait Payload: Serialize {}