mirror of
https://github.com/neodyland/sbv2-api.git
synced 2026-01-05 22:12:57 +00:00
12 lines
238 B
Rust
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(())
|
|
}
|