1
2
3
4
5
6
7
8
9
10
//! API wrapper module

#[cfg(any(feature = "cli", feature = "python"))]
mod common;

#[cfg(feature = "cli")]
pub mod cli;

#[cfg(feature = "python")]
pub mod python;