1 2 3 4 5 6 7 8
use pyo3::prelude::*; #[pymodule(some_arg)] fn module(_py: Python<'_>, m: &PyModule) -> PyResult<()> { Ok(()) } fn main(){}