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