forked from AbleOS/ableos
8 lines
185 B
Rust
8 lines
185 B
Rust
//! An ipc message structured in a nice convenient way
|
|
|
|
use alloc::vec::Vec;
|
|
|
|
/// TODO: Extend this into a full structure
|
|
/// DEPEND: This depends on an IDL
|
|
pub type Message = Vec<u8>;
|