Removed submodule classification in git

This commit is contained in:
brotoskyj
2025-11-04 09:04:39 -05:00
parent b59f2689f4
commit 14f8d4c420
9 changed files with 3643 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
use pyo3::prelude::*;
mod services;
#[pymodule]
fn airlock_libs(py: Python<'_>, m: &Bound<PyModule>) -> PyResult<()> {
m.add_function(wrap_pyfunction!(services::pull_policy_exec_histories, py)?)?;
Ok(())
}