cursive_tree/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 backend;
8mod model;
9mod view;
10
11#[allow(unused_imports)]
12pub use {backend::*, model::*, view::*};