feat: introduce hero_vault

This commit is contained in:
2025-05-08 17:39:39 +03:00
parent 2cd9faf4fa
commit 98ab2e1536
20 changed files with 2442 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ mod nerdctl;
mod git;
mod text;
mod rfs;
mod crypto;
#[cfg(test)]
mod tests;
@@ -73,6 +74,9 @@ pub use crate::text::{
// Re-export TextReplacer functions
pub use text::*;
// Re-export crypto module
pub use crypto::register_crypto_module;
// Rename copy functions to avoid conflicts
pub use os::copy as os_copy;
@@ -116,6 +120,9 @@ pub fn register(engine: &mut Engine) -> Result<(), Box<rhai::EvalAltResult>> {
// Register RFS module functions
rfs::register(engine)?;
// Register Crypto module functions
crypto::register_crypto_module(engine)?;
// Future modules can be registered here