Files
sbv2-api/sbv2_bindings/src/lib.rs
2024-09-12 13:18:41 +00:00

12 lines
238 B
Rust

use pyo3::prelude::*;
mod sbv2;
pub mod style;
/// sbv2 bindings module
#[pymodule]
fn sbv2_bindings(m: &Bound<'_, PyModule>) -> PyResult<()> {
m.add_class::<sbv2::TTSModel>()?;
m.add_class::<style::StyleVector>()?;
Ok(())
}