#[allow(deprecated)]
pub mod aaml;
pub mod builder;
#[allow(deprecated)]
pub mod commands;
pub mod error;
pub mod found_value;
pub mod pipeline;
#[allow(deprecated)]
mod types;
mod types_aam;
#[cfg(feature = "aot")]
pub mod aot;
#[cfg(feature = "ffi")]
pub mod ffi;
#[cfg(feature = "python")]
pub mod python;
pub mod aam;
pub mod aam_value;
#[cfg(feature = "jni")]
pub mod jni;
#[cfg(feature = "translator")]
pub mod translator;
#[cfg(feature = "python")]
#[pyo3::pymodule(name = "aam_py")]
fn aam_py(m: &pyo3::Bound<'_, pyo3::types::PyModule>) -> pyo3::PyResult<()> {
python::register(m)
}