1//! kotoba-rewrite - Kotoba Rewrite Components 2 3pub mod rewrite; 4pub mod prelude { 5 // Re-export commonly used items 6 pub use crate::rewrite::*; 7} 8 9#[cfg(test)] 10mod tests { 11 // Tests will be added here 12}