Initialize repository snapshot

This commit is contained in:
Vault Sovereign
2025-12-27 00:10:32 +00:00
commit 110d644e10
281 changed files with 40331 additions and 0 deletions

7
vaultmesh-psi/Cargo.toml Normal file
View File

@@ -0,0 +1,7 @@
[package]
name = "vaultmesh-psi"
version = "0.1.0"
edition = "2021"
[dependencies]
vaultmesh-core = { path = "../vaultmesh-core" }

5
vaultmesh-psi/src/lib.rs Normal file
View File

@@ -0,0 +1,5 @@
//! vaultmesh-psi - stub engine, to be implemented.
pub fn ping() -> &'static str {
"vaultmesh-psi alive"
}