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