shell_candy/
lib.rs

1#![doc = include_str!("../README.md")]
2#![forbid(unsafe_code)]
3#![deny(missing_docs, missing_debug_implementations, nonstandard_style)]
4
5mod error;
6mod log;
7mod task;
8
9pub use error::*;
10pub use log::*;
11pub use task::*;