1
2
3
4
5
6
7
8
9
/// Defines a type alias for the error type as a static string
pub type StrError = &'static str;

mod constants;
mod conversion;
mod enums;
mod interface_mpi;
pub use crate::enums::*;
pub use crate::interface_mpi::*;