use pyo3::prelude::*; pub mod modules; pub mod prelude; pub mod services; #[pymodule] fn airlock_libs(py: Python<'_>, m: &Bound) -> PyResult<()> { m.add_function(wrap_pyfunction!(services::pull_policy_exec_histories, py)?)?; Ok(()) }