mod fixed_array;
pub use fixed_array::FixedArrayChannelTable;
cfg_if::cfg_if! {
if #[cfg(feature = "alloc")] {
mod heap;
pub use heap::HeapChannelTable;
}
}
cfg_if::cfg_if! {
if #[cfg(feature = "external-alloc")] {
mod fixed_heap;
pub use fixed_heap::FixedHeapChannelTable;
}
}