//! 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>;