Files
sbv2-api/crates/sbv2_bindings/src/lib.rs
Googlefan 506ee4d883 refactor
2025-02-22 08:00:17 +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(())
}