1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![warn( clippy::doc_markdown, missing_debug_implementations, rust_2018_idioms, missing_docs )] #![doc = include_str!("../README.md")] /// The configuration module pub mod config; /// The actix module pub mod actix;