forked from StrafesNET/strafe-project
10 lines
134 B
Rust
10 lines
134 B
Rust
pub mod script;
|
|
pub mod context;
|
|
|
|
pub mod runner;
|
|
|
|
pub type Result<T>=core::result::Result<T,script::Error>;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|