Skip to main content

soar_core/
lib.rs

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