#![warn(missing_docs)]
//! # FutureSDR Types
//!
//! FutureSDR types that are used by the runtime and also exposed for
//! interaction with the outside world through the flowgraph's REST API.
mod description;
pub use description::BlockDescription;
pub use description::FlowgraphDescription;
mod pmt;
pub use pmt::Pmt;
pub use pmt::PmtKind;
mod port_id;
pub use port_id::PortId;