1
2
3
4
5
6
7
8
9
/// Contains CLI-specific code for the binary
#[cfg(feature = "cli")]
pub mod cli;

/// Contains necessary structures and code for client/server interaction
pub mod core;

/// Contains miscellaneous code used throughout the project
pub mod utils;