1// https://stackoverflow.com/a/61417700 2#![cfg_attr(docsrs, feature(doc_cfg))] 3#![warn(missing_docs)] 4#![doc = include_str!("../README.md")] 5 6mod pane; 7mod split_panel; 8mod view; 9mod which; 10 11#[allow(unused_imports)] 12pub use split_panel::*;