use pyo3::prelude::*;
#[pymodule]
mod module {
#[pymodule_init]
fn init(_m: &Bound<'_, PyModule>) -> PyResult<()> {
Ok(())
}
fn init2(_m: &Bound<'_, PyModule>) -> PyResult<()> {
fn main() {}