amebazii/
lib.rs

1#![cfg_attr(
2    feature = "documentation",
3    doc = "See the [CLI documentation](./doc/cli/index.html)."
4)]
5
6pub mod error;
7pub mod util;
8pub mod types;
9pub mod keys;
10pub mod map;
11pub mod conf;
12
13#[cfg(feature = "documentation")]
14/// Documentation
15pub mod doc;