1//! API functionality.
2//! Implementations for language bindings and libraries.
3pub mod interface;
45#[cfg(feature = "clap")]
6pub mod clap;
78#[cfg(feature = "pyo3")]
9pub mod pyo3;
1011#[cfg(feature = "yew")]
12pub mod yew;
1314#[cfg(test)]
15#[path = "./mod_test.rs"]
16mod mod_test;