thot_core/api/
mod.rs

1//! API functionality.
2//! Implementations for language bindings and libraries.
3pub mod interface;
4
5#[cfg(feature = "clap")]
6pub mod clap;
7
8#[cfg(feature = "pyo3")]
9pub mod pyo3;
10
11#[cfg(feature = "yew")]
12pub mod yew;
13
14#[cfg(test)]
15#[path = "./mod_test.rs"]
16mod mod_test;