1 2 3 4 5 6 7
use pyo3::prelude::*; use pyo3::types::*; #[pymodule] pub fn redb(_py: Python, m: &PyModule) -> PyResult<()> { Ok(()) }