Skip to main content

cursive_split_panel/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2#![warn(missing_docs)]
3#![doc = include_str!(concat!("../", std::env!("CARGO_PKG_README")))]
4// See: https://stackoverflow.com/a/61417700
5// See: https://github.com/rust-lang/cargo/pull/11645#issuecomment-1536905941
6
7mod actions;
8mod after;
9mod pane;
10mod split_panel;
11mod view;
12mod which;
13
14#[allow(unused_imports)]
15pub use {actions::*, split_panel::*};