1 2 3 4 5 6 7 8
use pyo3_stub_gen::Result; /// purely a helper bin to generate the type stubs by CI fn main() -> Result<()> { let stub = mlt_py::stub_info()?; stub.generate()?; Ok(()) }