strafe-client-jed/src/lib.rs

10 lines
130 B
Rust
Raw Normal View History

2024-09-17 01:54:04 +00:00
pub mod script;
pub mod context;
mod runner;
pub type Result<T>=core::result::Result<T,script::Error>;
#[cfg(test)]
mod tests;