amebazii/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(
    feature = "documentation",
    doc = "See the [CLI documentation](./doc/cli/index.html)."
)]

pub mod error;
pub mod util;
pub mod types;
pub mod keys;
pub mod map;
pub mod conf;

#[cfg(feature = "documentation")]
/// Documentation
pub mod doc;