strafe-client-jed/src/lib.rs

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;