BitcoinNetwork / src /main.rs
LordXido's picture
Update src/main.rs
96aceaf verified
raw
history blame contribute delete
349 Bytes
// src/main.rs
mod programs;
use programs::{CREDIT_REQUEST, GOVERNANCE_VOTE};
fn main() {
println!("Bitcoin Credit Network VM booting...");
println!("Loaded CREDIT_REQUEST module: {}", CREDIT_REQUEST);
println!("Loaded GOVERNANCE_VOTE module: {}", GOVERNANCE_VOTE);
// Add your core VM loop, dispatch, or simulation logic below
}