1use error::SoarError; 2 3pub mod constants; 4pub mod database; 5pub mod error; 6pub mod package; 7pub mod utils; 8 9pub type SoarResult<T> = std::result::Result<T, SoarError>;