(_py: Python, m: &PyModule)
| 184 | |
| 185 | #[pymodule] |
| 186 | fn megflow(_py: Python, m: &PyModule) -> PyResult<()> { |
| 187 | m.add_class::<Graph>()?; |
| 188 | m.add_function(wrap_pyfunction!(version, m)?)?; |
| 189 | utils_register(m)?; |
| 190 | envelope_register(m)?; |
| 191 | Ok(()) |
| 192 | } |
nothing calls this directly
no test coverage detected