#[cfg(feature = "python")]
use pyo3_stub_gen::Result;
#[cfg(feature = "python")]
fn main() -> Result<()> {
let stub = ie_schema::stub_info()?;
stub.generate()?;
Ok(())
}
#[cfg(not(feature = "python"))]
fn main() {
eprintln!("stub_gen requires the `python` feature");
}