1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// Copyright (c) 2024-2025 R3BL LLC. Licensed under Apache License, Version 2.0. // Attach. pub mod line_state; pub mod readline; pub mod readline_history; // Re-export. pub use line_state::*; pub use readline::*; pub use readline_history::*; // Integration tests (conditional visibility). #[cfg(any(test, doc))] pub mod integration_tests;