Refactored loxide libs for easier readability
Build Library / Build Library (push) Successful in 5m52s

This commit is contained in:
brotoskyj
2025-12-03 11:45:22 -05:00
parent e5b4b9d959
commit 6ab9de413f
9 changed files with 152 additions and 142 deletions
+3 -1
View File
@@ -1,5 +1,7 @@
use pyo3::prelude::*;
mod services;
pub mod modules;
pub mod services;
pub mod prelude;
#[pymodule]
fn airlock_libs(py: Python<'_>, m: &Bound<PyModule>) -> PyResult<()> {
m.add_function(wrap_pyfunction!(services::pull_policy_exec_histories, py)?)?;