This commit is contained in:
Zen 2021-05-14 07:17:09 +03:00
parent 287ac21841
commit b7b741a9df

View file

@ -16,7 +16,7 @@ fn get_ffmpeg_info() -> PyResult<String> {
/// A Python module implemented in Rust.
#[pymodule]
fn av1an_rust(_py: Python, m: &PyModule) -> PyResult<()> {
fn av1an(_py: Python, m: &PyModule) -> PyResult<()> {
m.add_function(wrap_pyfunction!(get_ffmpeg_info, m)?)?;
Ok(())