cans/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#![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;