cans/lib.rs
#![doc(
html_logo_url = "https://github.com/dr-montasir/cans/raw/HEAD/cans-logo.svg?sanitize=true",
html_root_url = "https://docs.rs/cans/latest/cans"
)]
/// ### HTML Module
///
/// A set of functions and macros for generating and manipulating HTML content.
pub mod html;
/// ### Mime Module
///
/// A set of functions for managing MIME types using a HashMap.
pub mod mime;
/// ### Rules Module
///
/// A module that encapsulates the rules and functionalities of the `do_html` macro.
pub mod rules;
// ### World Module
///
/// A module that encapsulates the management of country details, including
/// functionalities for inserting, deleting, retrieving, and sorting countries.
pub mod world;