10 lines
130 B
Rust
Raw Normal View History

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