This commit is contained in:
2025-04-02 08:49:40 +02:00
parent a3c6322b49
commit c7908cb6e4
67 changed files with 11897 additions and 0 deletions

14
src/virt/buildah/mod.rs Normal file
View File

@@ -0,0 +1,14 @@
// Herocontainer module provides container management capabilities via buildah
// using Rhai scripting integration
pub mod buildah;
pub mod buildah_build;
pub mod buildah_images;
pub mod engine;
pub mod buildah_register;
pub use engine::*;
pub use buildah_images::*;
pub use buildah_build::*;
pub use buildah_register::*;