Update rust_highlight/src/lib.rs
Browse files
rust_highlight/src/lib.rs
CHANGED
@@ -121,11 +121,7 @@ fn concat_videos(clips: Vec<&str>) -> PyResult<String> {
|
|
121 |
#[pymodule]
|
122 |
fn rust_highlight(_py: Python, m: &PyModule) -> PyResult<()> {
|
123 |
m.add_function(wrap_pyfunction!(render_video, m)?)?;
|
|
|
124 |
Ok(())
|
125 |
}
|
126 |
|
127 |
-
#[pymodule]
|
128 |
-
fn rust_combiner(_py: Python, m: &PyModule) -> PyResult<()> {
|
129 |
-
m.add_function(wrap_pyfunction!(combine_clips, m)?)?;
|
130 |
-
Ok(())
|
131 |
-
}
|
|
|
121 |
#[pymodule]
|
122 |
fn rust_highlight(_py: Python, m: &PyModule) -> PyResult<()> {
|
123 |
m.add_function(wrap_pyfunction!(render_video, m)?)?;
|
124 |
+
m.add_function(wrap_pyfunction!(combine_clips, m)?)?;
|
125 |
Ok(())
|
126 |
}
|
127 |
|
|
|
|
|
|
|
|
|
|