mod sys;
mod error;
pub use crate::error::{LightGBMError, LightGBMResult};
mod model;
pub use crate::model::Booster;
pub mod predict_type {
pub const NORMAL: i32 = 0;
pub const RAW_SCORE: i32 = 1;
pub const LEAF_INDEX: i32 = 2;
pub const CONTRIB: i32 = 3;
}